Skip to main content
FO

Foxbit

v0.2.1API Key

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.

21 herramientas2 env vars🇧🇷 Brasilestable en npm

Qué puede hacer tu agente

Foxbit le da a tu agente 21 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.

  • list_marketsList all available trading pairs / markets on Foxbit
  • list_currenciesList all supported currencies (crypto and fiat) on Foxbit
  • get_currencyGet details of a specific currency (precision, min/max amounts, type)
Ejemplo de llamada
// 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", { /* ... */ });

Instalar

terminal
$ npm install @codespar/mcp-foxbit

Quickstart

Agregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).

claude_desktop_config.json
{
  "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.

Variables de entorno · 2

Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.

FOXBIT_API_KEY
obligatoriosecret

API key for Foxbit

FOXBIT_API_SECRET
obligatoriosecret

API secret for Foxbit HMAC-SHA256 signature

Herramientas disponibles · 21

Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.

READlist_markets
List all available trading pairs / markets on Foxbit
READlist_currencies
List all supported currencies (crypto and fiat) on Foxbit
READget_currency
Get details of a specific currency (precision, min/max amounts, type)
READget_ticker
Get 24h ticker data for a market (price, volume, high/low)
READget_orderbook
Get order book (bids and asks) for a market
READget_market_trades
Get recent public trades for a market (trade history / tape)
READget_candles
Get OHLC candlestick data for a market
READget_account_balances
Get account balances for all currencies

Frameworks compatibles

MCP es un protocolo — cualquier framework que lo hable puede montar este server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Cualquier cliente MCPProtocolo

Preguntas frecuentes

Corré `npx -y @codespar/mcp-foxbit` y agregá el bloque de config de arriba a tu cliente MCP — Claude, Cursor, VS Code o cualquier cliente compatible con MCP. Sin build, sin SDK. ¿Preferís hosted? El tier gestionado de CodeSpar lo corre por vos, con la auth resuelta.
Foxbit — MCP server · 21 tools | CodeSpar