Routes MCP protocol requests (JSON-RPC 2.0) to the specified MCP Server asset.
Supported methods:
tools/list: Retrieve available tools for the assettools/call: Execute a specific tool with argumentsRate Limiting: 500 calls per minute per asset. When exceeded, the response will contain an error with isError=true and retry guidance.
JSON-RPC 2.0 formatted MCP request
Successful MCP response
Not Found - The specified resource was not found. This may occur when:
Internal Server Error - An unexpected error occurred on the server.
{- "jsonrpc": "2.0",
- "id": 1,
- "method": "tools/list",
- "params": { }
}{- "jsonrpc": "2.0",
- "id": "string",
- "result": {
- "tools": [
- {
- "name": "search_data",
- "description": "Retrieves data from the Celonis platform",
- "inputSchema": { },
- "outputSchema": { },
- "annotations": { }
}
]
}
}