switch_modes
Activate specific modes, such as 'editing' or 'planning', to enable tailored functionality on the Serena MCP Server, enhancing coding and task management workflows.
Instructions
Activates the desired modes, like ["editing", "interactive"] or ["planning", "one-shot"].
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modes | Yes | The names of the modes to activate. |
Input Schema (JSON Schema)
{
"properties": {
"modes": {
"description": "The names of the modes to activate.",
"items": {
"type": "string"
},
"title": "Modes",
"type": "array"
}
},
"required": [
"modes"
],
"title": "applyArguments",
"type": "object"
}