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
}
}
]
}
List of available tools for the MCP server
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
}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The ID of the MCP provider integration
List of available tools for the MCP server
The response is of type object
.
Was this page helpful?