{ "opencollection": "1.0.0", "info": { "name": "Kong Enterprise Admin ACLs MCP Servers API", "version": "3.14.0" }, "request": { "auth": { "type": "apikey", "key": "Kong-Admin-Token", "value": "{{Kong-Admin-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "MCP Servers", "type": "folder" }, "items": [ { "info": { "name": "List MCP Servers by Control Plane", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/mcp-servers", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "page[size]", "value": "", "type": "query", "description": "The maximum number of items to include per page. The last page of a collection may include fewer items." }, { "name": "page[after]", "value": "", "type": "query", "description": "Request the next page of data, starting with the item after this parameter." }, { "name": "filter", "value": "", "type": "query", "description": "Filter documents returned in the response." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nReturns an array of MCP server objects for the specified control plane." }, { "info": { "name": "Get MCP Server by Control Plane", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/mcp-servers/:mcpServerId", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nRetrieves an MCP server by its ID within a specific control plane context." }, { "info": { "name": "Get generated Python code for the MCP Server", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/mcp-servers/:mcpServerId/code", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nGenerates MCP server Python code from the OpenAPI specifications associated with the MCP server." }, { "info": { "name": "Get Kong entities for the MCP Server Gateway", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/mcp-servers/:mcpServerId/kong-entities", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." }, { "name": "runtime_version", "value": "", "type": "query", "description": "Kong Gateway runtime version to generate entities for" } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nRetrieves Kong entities (Routes, Services, Plugins) for the Gateway in front of the MCP Server." }, { "info": { "name": "Report MCP Server deployment status", "type": "http" }, "http": { "method": "POST", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/mcp-servers/:mcpServerId/status", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ], "body": { "type": "json", "data": "{}" } }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nReports the current deployment status of an MCP server, including replica counts and per-version pod statuses." }, { "info": { "name": "Get MCP Server Signals", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-cp/:controlPlaneId/signals", "params": [ { "name": "controlPlaneId", "value": "", "type": "path", "description": "The UUID of your control plane. This variable is available in the Konnect manager." }, { "name": "capabilities", "value": "[object Object]", "type": "query", "description": "Capability requests as a deepObject map.\n- Keys are capability names (e.g. `mcp`).\n- Values contain the capability request fields (`version`).\n" } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nClient-initiated signals fetch with long-polling capabilities.\nThe client supplies `capabilities` as a deepObject query parameter:\n\n\n - Keys are capability names (e.g. `mcp`)\n - Values contain the capability request fields (`version`)\n\nExample:\n\n\n GET /mcp-cp/{controlPlaneId}/signals?capabilities[mcp][version]=5\n\nThe CP responds with a JSON payload containing zero or more signals that the client should proc" }, { "info": { "name": "List all MCP Servers", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers", "params": [ { "name": "page[size]", "value": "", "type": "query", "description": "The maximum number of items to include per page. The last page of a collection may include fewer items." }, { "name": "page[after]", "value": "", "type": "query", "description": "Request the next page of data, starting with the item after this parameter." }, { "name": "filter", "value": "", "type": "query", "description": "Filter documents returned in the response." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nReturns an array of MCP server objects." }, { "info": { "name": "Create an MCP Server", "type": "http" }, "http": { "method": "POST", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers", "body": { "type": "json", "data": "{}" } }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nCreate an MCP Server in the Konnect Organization." }, { "info": { "name": "Get MCP Server", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers/:mcpServerId", "params": [ { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nReturns information about an individual MCP server." }, { "info": { "name": "Update MCP Server", "type": "http" }, "http": { "method": "PUT", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers/:mcpServerId", "params": [ { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ], "body": { "type": "json", "data": "{}" } }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nUpdate an individual MCP server." }, { "info": { "name": "Partially Update MCP Server", "type": "http" }, "http": { "method": "PATCH", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers/:mcpServerId", "params": [ { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ], "body": { "type": "json", "data": "{}" } }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nPartially update an individual MCP server." }, { "info": { "name": "Delete MCP Server", "type": "http" }, "http": { "method": "DELETE", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers/:mcpServerId", "params": [ { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nDelete an MCP server." }, { "info": { "name": "Get MCP Server deployment status", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v1/mcp-servers/:mcpServerId/status", "params": [ { "name": "mcpServerId", "value": "", "type": "path", "description": "The ID of the MCP server." } ] }, "docs": "**Pre-release Endpoint**\nThis endpoint is currently in beta and is subject to change.\n\nReturns the current aggregated deployment status of an MCP server." } ] } ], "bundled": true }