reference
Schemas

Schemas Reference

Data schemas and type definitions.

MCP Tools

View MCP tools manifest (mcp-tools.json)

JSON-RPC 2.0

All MCP endpoints use JSON-RPC 2.0 format.

Request Format

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}

Response Format

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "tools": [...]
  }
}

Error Format

{
  "jsonrpc": "2.0",
  "id": 1,
  "error": {
    "code": -32603,
    "message": "Internal error"
  }
}