modes-mcp-server
MCP server for managing Roo's custom operational modes
Documentation
Modes MCP Server
An MCP server for managing Roo's custom operational modes, providing programmatic control over mode configuration and management.
Features
- Full CRUD operations for custom modes
- Schema validation with Zod
- File system watching for config changes
- Error handling with standard MCP error codes
- Atomic file operations
Installation
# Clone the repository
git clone https://github.com/mkc909/modes-mcp-server.git
cd modes-mcp-server
# Install dependencies
npm install
# Build the project
npm run buildConfiguration
1. Environment Variables
Copy `.env.example` to `.env` and adjust as needed:
cp .env.example .envAvailable environment variables:
- `MODES_CONFIG_PATH`: Path to custom modes configuration file (default: `%APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_custom_modes.json`)
2. Custom Modes Configuration
Create a JSON file for your custom modes configuration. See `examples/modes.example.json` for the format:
{
"customModes": [
{
"slug": "example-mode",
"name": "Example Mode",
"roleDefinition": "Example role definition describing the mode's capabilities and responsibilities.",
"groups": [
"read",
["edit", {
"fileRegex": "\\.md$",
"description": "Can edit markdown files only"
}],
"command",
"mcp"
],
"customInstructions": "Example custom instructions for the mode."
}
]
}3. MCP Settings
Add the server configuration to your MCP settings file (typically at `%APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`). See `examples/mcp-settings.example.json` for the format:
{
"mcpServers": {
"modes": {
"command": "node",
"args": ["/path/to/modes-mcp-server/build/index.js"],
"env": {
"MODES_CONFIG_PATH": "/path/to/custom/modes.json"
},
"disabled": false,
"alwaysAllow": []
}
}
}Operational Modes Framework
The server manages a comprehensive set of operational modes:
Core System Modes
1. Planning Mode ๐ฏ
2. Analytics Mode ๐
3. Research Mode ๐
4. Implementation Mode โ๏ธ
5. Troubleshooting Mode ๐ง
6. Quality Control Mode โ
7. Integration Mode ๐
8. Documentation Mode ๐
9. Session Management Mode โก
Specialized Modes
- Trade Ops Manager
- Systematic trading and risk management
- Trade documentation and analysis
- Market analysis and strategy optimization
Mode Transition Flow
graph TD
A[Planning] --> B[Research]
B --> C[Implementation]
C --> D[Integration]
D --> E[Quality Control]
E --> F[Analytics]
F --> G[Troubleshooting]
G --> H[Documentation]
H --> AAvailable Tools
list_modes
Lists all custom modes currently configured.
get_mode
Get details of a specific mode by its slug.
Parameters:
- `slug`: The unique identifier of the mode
create_mode
Create a new custom mode.
Parameters:
- `slug`: Unique identifier (lowercase letters, numbers, and hyphens)
- `name`: Display name for the mode
- `roleDefinition`: Detailed description of the mode's role and capabilities
- `groups`: Array of allowed tool groups
- `customInstructions`: (optional) Additional instructions for the mode
update_mode
Update an existing custom mode.
Parameters:
- `slug`: The unique identifier of the mode to update
- `updates`: Object containing the fields to update (name, roleDefinition, groups, customInstructions)
delete_mode
Delete a custom mode.
Parameters:
- `slug`: The unique identifier of the mode to delete
validate_mode
Validate a mode configuration without saving it.
Parameters:
- `mode`: Complete mode configuration object to validate
Mode Configuration Schema
interface CustomMode {
slug: string; // Lowercase letters, numbers, and hyphens only
name: string; // Display name
roleDefinition: string; // Detailed description
groups: (string | [string, { fileRegex: string, description: string }])[];
customInstructions?: string; // Optional additional instructions
}Development
1. Make changes to the source code in `src/`
2. Build the project:
npm run build3. Start the server:
npm startBest Practices
1. Mode Selection
2. Mode Transitions
3. Configuration Management
Error Handling
The server uses standard MCP error codes:
- `InvalidParams`: Invalid input parameters or mode not found
- `MethodNotFound`: Unknown tool requested
- `InternalError`: File system errors or other internal issues
Testing
See TESTING.md for comprehensive test cases and validation procedures.
Contributing
1. Fork repository
2. Create feature branch
3. Submit pull request
4. Follow coding standards
License
MIT License - see LICENSE for details
Frequently asked questions
What is modes-mcp-server?
modes-mcp-server is MCP server for managing Roo's custom operational modes
How do I install modes-mcp-server?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is modes-mcp-server open source?
Yes โ it is hosted on GitHub at https://github.com/ccc0168/modes-mcp-server and has 28 stars.
Related MCP tools
๐ฅ Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Use any LLMs (Large Language Models) for Deep Research. Support SSE API and MCP server.
Enhanced MCP server for interactive user feedback and command execution in AI-assisted development, featuring dual interface support (Web UI and Desktop Application) with intelligent environment detection and cross-platform compatibility.
A powerful Zotero AI and MCP plugin with ChatGPT, Gemini 3.7, Claude Fable 5, Claude Opus 5, DeepSeek V4, Grok, OpenRouter, Kimi k3, GLM 5.3, SiliconFlow, GPT-oss, Gemma 4, Qwen 3.8
Connect your browser to AI models. Just use Dia on Chrome, Arc or Firefox.
ๆ้ข MCP Server ๅฏไปฅ่ฎฉ AI ่ชๅจๅฐ Markdown ๆ็ซ ๆ็ๅๅๅธ่ณๅพฎไฟกๅ ฌไผๅทใ
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP