Brazil's largest crypto exchange: BTC, ETH, and 200+ tokens. Your agent places orders, reads the orderbook, and manages wallets in BRL.
Mercado Bitcoin gives your agent 20 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
get_ticker β Get ticker data for a trading pair (price, volume, etc.)list_orderbook β Get order book (bids and asks) for a trading paircreate_order β Create a buy or sell order// 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("get_ticker", { /* ... */ });$ npm install @codespar/mcp-mercado-bitcoinAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"mercado-bitcoin": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-mercado-bitcoin"
],
"env": {
"MB_API_KEY": "<your_mb_api_key>"
}
}
}
}After restart, your agent can call any of the 20 tools below β try get_ticker first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
MB_API_KEYAPI key for mercado-bitcoin
Each tool is independent β your agent loads only what it needs to reduce context and response time.
get_tickerlist_orderbookcreate_orderget_ordercancel_orderlist_ordersget_balancelist_tradesMCP is a protocol β any framework that speaks it can mount this server.