generate-claude-desktop-config
Create and validate server configurations for the MCP Troubleshooter, enabling customized diagnostics and automated issue resolution.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serverConfigs | Yes | Array of server configurations |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"serverConfigs": {
"description": "Array of server configurations",
"items": {
"additionalProperties": false,
"properties": {
"args": {
"description": "Command arguments",
"items": {
"type": "string"
},
"type": "array"
},
"command": {
"description": "Command to run",
"type": "string"
},
"env": {
"additionalProperties": {
"type": "string"
},
"description": "Environment variables",
"type": "object"
},
"name": {
"description": "Server name (used as key in config)",
"type": "string"
}
},
"required": [
"name",
"command",
"args"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"serverConfigs"
],
"type": "object"
}