configure-watcher
Monitor and manage changes to Claude for Desktop and Cursor configuration files by tracking specified paths, ensuring consistent configurations across your MCP environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
claudeConfigPath | No | Path to Claude for Desktop config file | |
cursorConfigPath | No | Path to Cursor config file | |
watchClaude | No | Whether to watch Claude for Desktop config | |
watchCursor | No | Whether to watch Cursor config |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"claudeConfigPath": {
"description": "Path to Claude for Desktop config file",
"type": "string"
},
"cursorConfigPath": {
"description": "Path to Cursor config file",
"type": "string"
},
"watchClaude": {
"description": "Whether to watch Claude for Desktop config",
"type": "boolean"
},
"watchCursor": {
"description": "Whether to watch Cursor config",
"type": "boolean"
}
},
"type": "object"
}