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.
Sign up to get an API key and an agent wallet (auto-created on Base). Free, takes ~30 seconds.
Get an API keyMost 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.
Each MCP client stores its config in a slightly different place. The JSON above goes into one of these:
Settings → MCP → Add new global MCP server. Or edit the file directly.
~/.cursor/mcp.json (global) or .cursor/mcp.json (per project)
Settings → Cascade → MCP Servers → Add server. Config is the same JSON.
~/.codeium/windsurf/mcp_config.json
Click the MCP icon in the Cline sidebar → Configure MCP Servers → paste below.
Cline panel → MCP Servers tab
Open the config file and add the mcpServers block to your existing assistant.
~/.continue/config.yaml (under tools.mcpServers)
Open Zed settings (Cmd+,) and add the snippet under context_servers.
~/.config/zed/settings.json (under context_servers)
Set the MCP server in the Codex config file. Codex spawns it on each session.
~/.codex/config.toml (under [mcp_servers])
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.
MCP clients pick up new servers on restart. After restart, ask your AI:
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.