Kong · Schema

MCPServerCodeResponse

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
code string Generated Python code for the MCP server implementation
View JSON Schema on GitHub

JSON Schema

kong-mcpservercoderesponse-schema.json Raw ↑
{
  "$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"
  ]
}