Skip to main content
GET
/
mcp-servers
/
{mcpServerId}
/
capabilities
List MCP Server Capabilities
curl --request GET \
  --url https://api.portkey.ai/v1/mcp-servers/{mcpServerId}/capabilities \
  --header 'x-portkey-api-key: <api-key>'
{
  "data": [
    {
      "name": "<string>",
      "type": "tool",
      "title": "<string>",
      "description": "<string>",
      "icons": "<array>",
      "enabled": true,
      "integration_enabled": true,
      "input_schema": {},
      "output_schema": {},
      "execution": {},
      "annotations": {},
      "arguments": "<array>",
      "uri": "<string>",
      "uri_template": "<string>",
      "mime_type": "<string>",
      "size": 123
    }
  ],
  "counts": {
    "tools": {
      "total": 123,
      "enabled": 123
    },
    "prompts": {
      "total": 123,
      "enabled": 123
    },
    "resources": {
      "total": 123,
      "enabled": 123
    },
    "resource_templates": {
      "total": 123,
      "enabled": 123
    }
  },
  "total": 123,
  "has_more": true
}

Authorizations

x-portkey-api-key
string
header
required

Path Parameters

mcpServerId
string
required

MCP Server ID (UUID) or slug

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:100
Required range: 1 <= x <= 500
type
enum<string>
Available options:
tool,
prompt,
resource,
resource_template

Response

200 - application/json

OK

data
object[]
counts
object
total
integer
has_more
boolean
Last modified on February 6, 2026