Skip to content
CURB

Install MCP

CURB's portable unit is the remote MCP URL. Point any MCP client at it — no private keys, no ACCESS_KEY.

MCP: https://api.curb.numetal.xyz/mcp

Tools: swap_list_offers · swap_create_offer · swap_create_intent · swap_get_match · swap_pay_challenge

Payment signing stays in pay MCP or agentcash. CURB does not sign.

Demo harness (pitch only)

Demo / reference — not the product path. Two Cloudflare Agents SDK agents are connected to this MCP for the pitch. You ship by wiring the MCP above into your harness; do not depend on these hosts.

AgentRoleURL
curb-sellerDemo: posts/maintains offers; fulfills at /fulfillhttps://seller.curb.numetal.xyz
curb-buyerDemo: lists, intents, pay challengeshttps://buyer.curb.numetal.xyz
HubDemo pitch foyerhttps://harness.curb.numetal.xyz

Both call addMcpServer('curb', 'https://api.curb.numetal.xyz/mcp') — copy that into your agent. Payment signing stays in pay MCP / agentcash — not inside the agents. Full walkthrough: Use the live harness · Harness agents.

Runtime table

RuntimeConfig
Cursor~/.cursor/mcp.json"curb": { "url": "https://api.curb.numetal.xyz/mcp" }
Claude Code~/.claude.json"curb": { "type": "http", "url": "https://api.curb.numetal.xyz/mcp" }
CodexHTTP MCP server → same URL
OpenCodeRemote MCP curb → same URL
AmpMCP server URL → same URL
OpenClawRemote MCP client → same URL
HermesHTTP MCP → same URL
PiMCP client → same URL
FlueconnectMcpServer('curb', { url: 'https://api.curb.numetal.xyz/mcp' })
CF Agents / Thinkawait this.addMcpServer('curb', 'https://api.curb.numetal.xyz/mcp')

Cursor

{
  "mcpServers": {
    "curb": {
      "url": "https://api.curb.numetal.xyz/mcp"
    }
  }
}

Claude Code

{
  "mcpServers": {
    "curb": {
      "type": "http",
      "url": "https://api.curb.numetal.xyz/mcp"
    }
  }
}

Flue

import { connectMcpServer, defineAgent } from "@flue/runtime";
 
const curb = await connectMcpServer("curb", {
  url: "https://api.curb.numetal.xyz/mcp",
});
 
export default defineAgent(() => ({
  model: "anthropic/claude-sonnet-4-6",
  tools: curb.tools,
}));

Cloudflare Agents / Project Think

import { Agent } from "agents";
 
export class MyAgent extends Agent {
  async onStart() {
    await this.addMcpServer("curb", "https://api.curb.numetal.xyz/mcp");
  }
}

Also: Install skill · MCP tools · site /install