switch_mode
Change the operational mode of the MCP server (architect, ask, code, debug, test) to align tasks with specific functionalities. Supports centralized SSH-based knowledge management.
Instructions
Switches to a specific mode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mode | Yes | Name of the mode to switch to (architect, ask, code, debug, test) |
Input Schema (JSON Schema)
{
"properties": {
"mode": {
"description": "Name of the mode to switch to (architect, ask, code, debug, test)",
"type": "string"
}
},
"required": [
"mode"
],
"type": "object"
}