LatAm crypto exchange: trading, funding, and withdrawals in MXN, ARS, and BRL. Your agent executes trades and manages fiat on/off-ramps.
Bitso 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, VWAP, 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-bitsoAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bitso": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bitso"
],
"env": {
"BITSO_API_KEY": "<your_bitso_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.
BITSO_API_KEYAPI key for bitso
Each tool is independent β your agent loads only what it needs to reduce context and response time.
get_tickerlist_orderbookcreate_orderget_ordercancel_orderlist_ordersget_balanceslist_tradesMCP is a protocol β any framework that speaks it can mount this server.