# io.github.codespar/mcp-foxbit (npm · @codespar/mcp-foxbit)

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

- Trust score: 70/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `@codespar/mcp-foxbit`: 70/100 (this document), [markdown](https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit.md), [page](https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit)

## Channel facts

- Registry: `npm`
- Package: `@codespar/mcp-foxbit`
- Version: `0.2.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 42 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1305 tokens (~62/item across 21 items; 21 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add codespar-mcp-foxbit -- npx -y @codespar/mcp-foxbit
```

### Codex

```bash
codex mcp add codespar-mcp-foxbit -- npx -y @codespar/mcp-foxbit
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "codespar-mcp-foxbit": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@codespar/mcp-foxbit"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add codespar-mcp-foxbit --command npx --arg -y --arg @codespar/mcp-foxbit
```

### Hermes

```yaml
mcp_servers:
  codespar-mcp-foxbit:
    command: "npx"
    args: ["-y", "@codespar/mcp-foxbit"]
```

### Other

```json
{
  "mcpServers": {
    "codespar-mcp-foxbit": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-foxbit"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-04 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-03 (score 69, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 65, +29)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 36, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-07-31 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (21)

### `list_markets` (~20 tokens)

List all available trading pairs / markets on Foxbit

### `list_currencies` (~22 tokens)

List all supported currencies (crypto and fiat) on Foxbit

### `get_currency` (~42 tokens)

Get details of a specific currency (precision, min/max amounts, type)

Input parameters:

- `symbol` (string, required): Currency symbol (e.g. btc, brl, eth)

### `get_ticker` (~52 tokens)

Get 24h ticker data for a market (price, volume, high/low)

Input parameters:

- `symbol` (string, required): Market symbol (e.g. btcbrl, ethbrl, ltcbrl)

### `get_orderbook` (~51 tokens)

Get order book (bids and asks) for a market

Input parameters:

- `depth` (number): Number of price levels per side
- `symbol` (string, required): Market symbol (e.g. btcbrl)

### `get_market_trades` (~63 tokens)

Get recent public trades for a market (trade history / tape)

Input parameters:

- `page` (number): Page number
- `page_size` (number): Results per page (max 100)
- `symbol` (string, required): Market symbol (e.g. btcbrl)

### `get_candles` (~88 tokens)

Get OHLC candlestick data for a market

Input parameters:

- `end_time` (string): End time (ISO 8601)
- `interval` (string, required): Candle interval
- `limit` (number): Max number of candles to return
- `start_time` (string): Start time (ISO 8601)
- `symbol` (string, required): Market symbol (e.g. btcbrl)

### `get_account_balances` (~17 tokens)

Get account balances for all currencies

### `get_balance` (~36 tokens)

Get account balance for a single currency

Input parameters:

- `currency_symbol` (string, required): Currency symbol (e.g. brl, btc, eth)

### `create_order` (~110 tokens)

Create a buy or sell order (limit or market)

Input parameters:

- `client_order_id` (string): Client-supplied order ID
- `market_symbol` (string, required): Market symbol (e.g. btcbrl)
- `price` (string): Limit price (required for LIMIT orders)
- `quantity` (string, required): Base asset quantity (e.g. BTC)
- `side` (string, required): Order side
- `time_in_force` (string): Time in force
- `type` (string, required): Order type

### `get_order` (~23 tokens)

Get order details by ID

Input parameters:

- `id` (string, required): Order ID

### `list_orders` (~97 tokens)

List orders with optional filters

Input parameters:

- `end_time` (string): End time (ISO 8601)
- `market_symbol` (string): Filter by market symbol
- `page` (number): Page number
- `page_size` (number): Results per page
- `side` (string): Filter by side
- `start_time` (string): Start time (ISO 8601)
- `state` (string): Filter by order state

### `cancel_order` (~26 tokens)

Cancel an open order by ID

Input parameters:

- `id` (string, required): Order ID to cancel

### `list_trades` (~80 tokens)

List user's executed trades (private trade history)

Input parameters:

- `end_time` (string): End time (ISO 8601)
- `market_symbol` (string): Filter by market symbol
- `page` (number): Page number
- `page_size` (number): Results per page
- `start_time` (string): Start time (ISO 8601)

### `list_deposits_withdrawals` (~105 tokens)

List deposits and withdrawals (transactions) for a currency

Input parameters:

- `currency_symbol` (string, required): Currency symbol (e.g. brl, btc, eth)
- `end_time` (string): End time (ISO 8601)
- `page` (number): Page number
- `page_size` (number): Results per page
- `start_time` (string): Start time (ISO 8601)
- `type` (string): Filter by transaction type

### `create_pix_deposit` (~49 tokens)

Create a Pix instant deposit (BRL). Returns Pix QR code / copy-paste payload.

Input parameters:

- `amount` (string, required): Deposit amount in BRL (e.g. "100.00")

### `list_pix_deposits` (~71 tokens)

List Pix deposit history (BRL instant deposits)

Input parameters:

- `end_time` (string): End time (ISO 8601)
- `page` (number): Page number
- `page_size` (number): Results per page
- `start_time` (string): Start time (ISO 8601)

### `create_pix_withdrawal` (~80 tokens)

Create a Pix withdrawal (BRL) to a Pix key

Input parameters:

- `amount` (string, required): Withdrawal amount in BRL (e.g. "100.00")
- `pix_key` (string, required): Destination Pix key (CPF, CNPJ, email, phone, or random key)
- `pix_key_type` (string, required): Pix key type

### `list_pix_withdrawals` (~71 tokens)

List Pix withdrawal history (BRL fiat withdrawals)

Input parameters:

- `end_time` (string): End time (ISO 8601)
- `page` (number): Page number
- `page_size` (number): Results per page
- `start_time` (string): Start time (ISO 8601)

### `create_crypto_withdrawal` (~108 tokens)

Create a crypto withdrawal to an external wallet address

Input parameters:

- `address` (string, required): Destination wallet address
- `amount` (string, required): Withdrawal amount in base units
- `currency_symbol` (string, required): Currency symbol (e.g. btc, eth, usdt)
- `network` (string): Blockchain network (e.g. BTC, ERC20, TRC20, POLYGON)
- `tag` (string): Memo / tag / destination tag (for XRP, XLM, etc.)

### `get_trading_fees` (~27 tokens)

Get current trading fees and limits (maker/taker per pair, withdrawal limits)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit#diagnostics

## Score history

- 2026-08-04: 70
- 2026-08-03: 69
- 2026-08-02: 65
- 2026-08-01: 36
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@codespar/mcp-foxbit
- Socket report: https://socket.dev/npm/package/@codespar/mcp-foxbit
- Repository: https://github.com/codespar/mcp-dev-latam
- Changelog RSS feed: https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit/changelog.json
- HTML version of this page: https://verifymcp.io/servers/codespar-mcp-foxbit/codespar-mcp-foxbit
