🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@codespar/mcp-foxbit

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-foxbit

MCP server for Foxbit — Brazilian crypto exchange, trading, orderbook, institutional

latest
npmnpm
Version
0.2.2
Version published
Weekly downloads
41
5.13%
Maintainers
2
Weekly downloads
 
Created
Source

@codespar/mcp-foxbit

MCP server for Foxbit — Brazilian cryptocurrency exchange with trading, orderbook, and market data

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "foxbit": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-foxbit"],
      "env": {
        "FOXBIT_API_KEY": "your-key",
        "FOXBIT_API_SECRET": "your-secret"
      }
    }
  }
}

Claude Code

claude mcp add foxbit -- npx @codespar/mcp-foxbit

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "foxbit": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-foxbit"],
      "env": {
        "FOXBIT_API_KEY": "your-key",
        "FOXBIT_API_SECRET": "your-secret"
      }
    }
  }
}

Tools (21)

ToolPurpose
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)
get_tickerGet 24h ticker data for a market (price, volume, high/low)
get_orderbookGet order book (bids and asks) for a market
get_market_tradesGet recent public trades for a market (trade history / tape)
get_candlesGet OHLC candlestick data for a market
get_account_balancesGet account balances for all currencies
get_balanceGet account balance for a single currency
create_orderCreate a buy or sell order (limit or market)
get_orderGet order details by ID
list_ordersList orders with optional filters
cancel_orderCancel an open order by ID
list_tradesList user's executed trades (private trade history)
list_deposits_withdrawalsList deposits and withdrawals (transactions) for a currency
create_pix_depositCreate a Pix instant deposit (BRL).
list_pix_depositsList Pix deposit history (BRL instant deposits)
create_pix_withdrawalCreate a Pix withdrawal (BRL) to a Pix key
list_pix_withdrawalsList Pix withdrawal history (BRL fiat withdrawals)
create_crypto_withdrawalCreate a crypto withdrawal to an external wallet address
get_trading_feesGet current trading fees and limits (maker/taker per pair, withdrawal limits)

Authentication

Foxbit uses HMAC-SHA256 request signing. Each request includes three headers:

  • X-FB-ACCESS-KEY — API key
  • X-FB-ACCESS-TIMESTAMP — UNIX timestamp in milliseconds
  • X-FB-ACCESS-SIGNATURE — hex HMAC-SHA256 of timestamp + method + path + queryString + body using API secret

Base URL: https://api.foxbit.com.br/rest/v3

Get your credentials

  • Go to Foxbit
  • Create an account (KYC required for Brazilian residents)
  • Navigate to API settings to generate key and secret
  • Set the environment variables

Environment Variables

VariableRequiredDescription
FOXBIT_API_KEYYesAPI key from Foxbit
FOXBIT_API_SECRETYesAPI secret for HMAC-SHA256

Brazilian Crypto Exchanges in CodeSpar

Hedge liquidity across multiple BR venues:

  • Mercado Bitcoin — biggest BR exchange, 200+ tokens, deep altcoin coverage
  • Foxbit (this) — 2nd BR exchange, focus on BTC / ETH / LTC, strong institutional desk

Merchants and traders use both for best execution and redundancy.

Roadmap

v0.2 (planned)

  • get_candles — OHLCV candlestick data
  • create_withdrawal — Initiate crypto/PIX withdrawal
  • list_currencies — Available currencies and networks
  • get_fees — Trading fees for account tier
  • create_stop_order — Stop-limit / stop-market orders

v0.3 (planned)

  • Institutional / OTC desk integrations
  • WebSocket market data streams (where MCP transport allows)

Want to contribute? Open a PR or request a tool.

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT

Keywords

mcp

FAQs

Package last updated on 22 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts