El segundo exchange de cripto más grande de BR. Complementa a Mercado Bitcoin para hedge + liquidez. Requests firmadas con HMAC-SHA256 — firma + todos los endpoints verificados contra docs.foxbit.com.br.
Foxbit le da a tu agente 21 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
list_markets — List all available trading pairs / markets on Foxbitlist_currencies — List all supported currencies (crypto and fiat) on Foxbitget_currency — Get details of a specific currency (precision, min/max amounts, type)// 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_markets", { /* ... */ });$ npm install @codespar/mcp-foxbitAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"foxbit": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-foxbit"
],
"env": {
"FOXBIT_API_KEY": "<your_foxbit_api_key>",
"FOXBIT_API_SECRET": "<your_foxbit_api_secret>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 21 herramientas de abajo — probá list_markets primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
FOXBIT_API_KEYAPI key for Foxbit
FOXBIT_API_SECRETAPI secret for Foxbit HMAC-SHA256 signature
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
list_marketslist_currenciesget_currencyget_tickerget_orderbookget_market_tradesget_candlesget_account_balancesMCP es un protocolo — cualquier framework que lo hable puede montar este server.