GET
/
mcp-server
/
{mcp_server_integration_id}
/
tools
List Tools for MCP
curl --request GET \
  --url https://{controlPlaneURL}/api/llm/mcp-server/{mcp_server_integration_id}/tools \
  --header 'Authorization: Bearer <token>'
{
  "integration_id": "<string>",
  "integration_name": "<string>",
  "integration_fqn": "<string>",
  "tools": [
    {
      "name": "<string>",
      "description": "<string>",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": [
          "<string>"
        ]
      },
      "annotations": {
        "title": "<string>",
        "readOnlyHint": true,
        "destructiveHint": true,
        "idempotentHint": true,
        "openWorldHint": true
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

mcp_server_integration_id
string
required

The ID of the MCP provider integration

Response

200
application/json

List of available tools for the MCP server

The response is of type object.