{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateStdioMCPServer", "title": "CreateStdioMCPServer", "properties": { "mcp_server_type": { "type": "string", "const": "stdio", "title": "Mcp Server Type", "default": "stdio" }, "command": { "type": "string", "title": "Command", "description": "The command to run (MCP 'local' client will run this command)" }, "args": { "items": { "type": "string" }, "type": "array", "title": "Args", "description": "The arguments to pass to the command" }, "env": { "anyOf": [ { "additionalProperties": { "type": "string" }, "type": "object" }, { "type": "null" } ], "title": "Env", "description": "Environment variables to set" } }, "additionalProperties": false, "type": "object", "required": [ "command", "args" ], "description": "Create a new Stdio MCP server" }