POST /api/mcp
MCP Streamable HTTP endpoint (JSON-RPC 2.0): initialize, tools/list, tools/call.
Every tool is listed under x-mcp-tools at the document root; zeq_api_catalog maps the surface and zeq_http calls any endpoint.
| Method | POST |
| Path | /api/mcp |
| Feature area | MCP |
| Tag | MCP |
| Auth | public (no key) |
| Tier | computation (public) |
Parameters
This operation publishes no path, query or header parameters.
Request body
Required. Content type: application/json.
| Field | Type | Required | Description |
|---|---|---|---|
jsonrpc | string | yes | — |
id | any | no | — |
method | string | yes | — |
params | object | no | — |
Responses
| Status | Meaning |
|---|---|
200 | JSON-RPC result |
No response body schema is published for this operation — the node returns JSON; inspect a live call to see its shape.
Call it
curl -sS -X POST https://zeq.me/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"id": {},
"params": {
"name": "example"
}
}'
Generated from the live OpenAPI description (https://zeq.me/openapi.json, spec version 1.287.0) by scripts/generate-reference.mjs. Do not edit — this file is rewritten on every run.