Skip to main content
FO

Foxbit

v0.2.1API Key

Segunda maior exchange de cripto do BR. Complementa o Mercado Bitcoin pra hedge + liquidez. Requisições assinadas com HMAC-SHA256 — assinatura + todos os endpoints verificados contra docs.foxbit.com.br.

21 ferramentas2 env vars🇧🇷 Brasilestável no npm

O que seu agente faz

O Foxbit dá ao seu agente 21 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer 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)
Exemplo de chamada
// 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

Adicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com 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>"
      }
    }
  }
}

Depois de reiniciar, seu agente pode chamar qualquer uma das 21 ferramentas abaixo — teste list_markets primeiro.

Variáveis de ambiente · 2

Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da CodeSpar.

FOXBIT_API_KEY
obrigatóriosecret

API key for Foxbit

FOXBIT_API_SECRET
obrigatóriosecret

API secret for Foxbit HMAC-SHA256 signature

Ferramentas disponíveis · 21

Cada ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.

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 compatíveis

MCP é um protocolo — qualquer framework que o fale pode montar este server.

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

Perguntas frequentes

Rode `npx -y @codespar/mcp-foxbit` e adicione o bloco de config acima ao seu cliente MCP — Claude, Cursor, VS Code ou qualquer cliente compatível com MCP. Sem build, sem SDK. Prefere hospedado? O tier gerenciado da CodeSpar roda pra você, com a auth resolvida.
Foxbit — MCP server · 21 tools | CodeSpar