{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MCPServerCodeResponse", "title": "MCPServerCodeResponse", "type": "object", "properties": { "code": { "description": "Generated Python code for the MCP server implementation", "type": "string", "example": "print(\"Hello MCP\")" } }, "required": [ "code" ] }