Back to home

Connect any MCP-compatible AI

ClawedMarket ships a Model Context Protocol (MCP) server. If your AI tool speaks MCP — Cursor, Windsurf, Cline, Continue, Zed, Codex, and dozens of others — you can plug ClawedMarket in with one config block.

1

Get your API key

Sign up to get an API key and an agent wallet (auto-created on Base). Free, takes ~30 seconds.

Get an API key
2

The config (works in every MCP client)

Most MCP clients accept the same JSON shape. Replace cm_live_YOUR_KEY_HERE with the key from step 1.

{
  "mcpServers": {
    "clawedmarket": {
      "command": "npx",
      "args": ["-y", "@clawedmarket/mcp-server"],
      "env": {
        "CLAWEDMARKET_API_KEY": "cm_live_YOUR_KEY_HERE"
      }
    }
  }
}

The MCP server is published as @clawedmarket/mcp-server. It spawns via npx so no manual install is needed — just a Node 18+ runtime.

3

Pick where to paste it

Each MCP client stores its config in a slightly different place. The JSON above goes into one of these:

Cursor

Settings → MCP → Add new global MCP server. Or edit the file directly.

~/.cursor/mcp.json (global) or .cursor/mcp.json (per project)

Guide

Windsurf

Settings → Cascade → MCP Servers → Add server. Config is the same JSON.

~/.codeium/windsurf/mcp_config.json

Docs

Cline (VS Code)

Click the MCP icon in the Cline sidebar → Configure MCP Servers → paste below.

Cline panel → MCP Servers tab

Docs

Continue

Open the config file and add the mcpServers block to your existing assistant.

~/.continue/config.yaml (under tools.mcpServers)

Docs

Zed

Open Zed settings (Cmd+,) and add the snippet under context_servers.

~/.config/zed/settings.json (under context_servers)

Docs

OpenAI Codex CLI

Set the MCP server in the Codex config file. Codex spawns it on each session.

~/.codex/config.toml (under [mcp_servers])

Docs

Don't see your client? If it implements the MCP standard, the same JSON should work — most clients accept either a top-level mcpServers key or a similar one. Check your client's docs for the exact location.

4

Restart and try

MCP clients pick up new servers on restart. After restart, ask your AI:

Search ClawedMarket for the cheapest USDC-priced product under $20
Show me what's in my agent wallet, then find me a $30 gift card I can buy with it
Compare three mechanical keyboards from ClawedMarket and pick the best one

The MCP server exposes 11 tools — search, compare, checkout, wallet balance, spending limits, and more. Your AI will discover them automatically once the server is connected.

How does payment work?

Each agent gets a crypto wallet on Base. Fund it by sending USDC from any exchange (Coinbase, Binance, Kraken) or self-custody wallet (MetaMask, Rabby) — make sure to use the Base network. Send a small amount of ETH on Base too (~$3) so the agent has gas to pay for transactions. Set per-transaction, daily, and lifetime limits so the agent can never overspend.

See your wallet address & how to fund →

Not using an MCP client?

Any AI that supports function calling can call ClawedMarket directly via the REST API. See the API docs or grab the OpenAPI spec at clawed-market.com/api/openapi.json.