Scopes MCP traffic to a specific data source. This endpoint implements the
MCP Streamable HTTP transport.
Send any JSON-RPC 2.0 MCP request (such as initialize, tools/list, tools/call) in the
request body. The server routes it within the context of the specified connection.
Omit id to send a notification. (No response expected. The server returns 202 No Content).
Documentation Index
Fetch the complete documentation index at: https://docs.cloud.cdata.com/llms.txt
Use this file to discover all available pages before exploring further.
JWT token authentication. Include the token in the Authorization header as 'Bearer '.
The unique identifier of the connection to scope this request to.
JSON-RPC protocol version. Must be "2.0".
2.0 MCP method name (e.g., initialize, tools/list, tools/call).
Method-specific parameters. May be omitted for parameterless methods.
Request identifier echoed in the response. Use a string or integer. Omit entirely to send a notification (no response will be returned).
JSON-RPC response or SSE stream, depending on the request.
application/json — returned for a single request that includes an id.
The body is a JsonRpcResponse object.text/event-stream — returned when the server needs to stream multiple
messages back (e.g., long-running tool calls, server-initiated notifications).
Each SSE data: line is a JSON-encoded JsonRpcResponse object. The stream
closes when the server has sent all messages for the request.