AI-native

Real tools over JSON-RPC

Each selected route becomes a typed tool with a name and description, invoked over JSON-RPC 2.0 with proper path/query/body marshalling and streaming.

  • tools/list & tools/call (JSON-RPC 2.0)
  • Tool arguments become the right path, query & body
  • Streaming responses
  • Works from Claude, Cursor or any MCP client
curl — the exact call an MCP client makes
curl -sX POST \
  https://acme-acmecorp.mcp.apiblaze.com/1.0.0/prod \
  -H 'content-type: application/json' \
  -H 'authorization: Bearer <token>' \
  -d '{ "jsonrpc": "2.0", "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_order",
    "arguments": { "order_id": "A-42" }
  }
}'

A real MCP transport, not a shim

Typed tools

Routes map to tools with named params your agent understands.

JSON-RPC 2.0

Standard tools/list and tools/call over the wire.

Marshalling

Args become the right path, query and body for your API.

Try it in 30 seconds

No signup required. Claim it to your account whenever you’re ready.