Smart Wallets / Embedded Wallets / MPC on Coinbase Developer Platform. Create wallets, list balances, transfer onchain. ES256 JWT auth shares one CDP key with the Trading + Payments products.
Coinbase CDP Wallets gives your agent 7 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("list_resources", { /* ... */ });$ npm install @codespar/mcp-coinbase-cdpAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"coinbase-cdp-wallets": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-coinbase-cdp"
],
"env": {}
}
}
}Each tool is independent β your agent loads only what it needs to reduce context and response time.
Tool list is being indexed. Check the source on GitHub in the meantime.
MCP is a protocol β any framework that speaks it can mount this server.