Modes MCP Server
by mkc909
update_mode
Update an existing custom mode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
slug | Yes | Slug of the mode to update | |
updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"slug": {
"description": "Slug of the mode to update",
"type": "string"
},
"updates": {
"properties": {
"customInstructions": {
"type": "string"
},
"groups": {
"items": {
"oneOf": [
{
"type": "string"
},
{
"items": [
{
"type": "string"
},
{
"properties": {
"description": {
"type": "string"
},
"fileRegex": {
"type": "string"
}
},
"required": [
"fileRegex",
"description"
],
"type": "object"
}
],
"type": "array"
}
]
},
"type": "array"
},
"name": {
"type": "string"
},
"roleDefinition": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"slug",
"updates"
],
"type": "object"
}
You must be authenticated.