Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@codespar/mcp-bitso

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-bitso

MCP server for Bitso — Latin American crypto exchange, trading, funding, withdrawals

latest
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

@codespar/mcp-bitso

MCP server for Bitso — Latin American cryptocurrency exchange with trading, orders, and withdrawals

npm License: MIT

Quick Start

Claude Desktop

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

{
  "mcpServers": {
    "bitso": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-bitso"],
      "env": {
        "BITSO_API_KEY": "your-key",
        "BITSO_API_SECRET": "your-secret"
      }
    }
  }
}

Claude Code

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

Cursor / VS Code

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

{
  "servers": {
    "bitso": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-bitso"],
      "env": {
        "BITSO_API_KEY": "your-key",
        "BITSO_API_SECRET": "your-secret"
      }
    }
  }
}

Tools (20)

ToolPurpose
get_tickerGet ticker data for a trading pair (price, volume, VWAP, etc.)
list_orderbookGet order book (bids and asks) for a trading pair
create_orderCreate a buy or sell order
get_orderGet order details by ID
cancel_orderCancel an open order
list_ordersList orders with optional filters
get_balancesGet account balances for all assets
list_tradesList executed trades for an order book
list_funding_sourcesList available funding sources (bank accounts, etc.)
create_withdrawalCreate a withdrawal request (crypto or fiat)
list_ledgerList account ledger entries (trades, fees, fundings, withdrawals)
list_open_ordersList currently open orders for the authenticated user
lookup_orderLook up one or more orders by origin_id (client_id)
cancel_all_ordersCancel all open orders for the authenticated user
list_fundingsList account fundings (deposits)
list_withdrawalsList account withdrawals
get_withdrawalRetrieve a specific withdrawal by its ID
list_feesList applicable fees for the authenticated user across trading pairs
get_account_statusRetrieve account KYC and verification status (tier, limits, required docs)
list_funding_destinationsGet funding destination details (address/CLABE) for a given currency

Authentication

Bitso uses HMAC-SHA256 signed requests with an API key and secret.

Sandbox / Testing

Bitso provides a developer sandbox via the developer account.

Get your credentials

  • Go to Bitso
  • Create an account
  • Navigate to API settings and generate key and secret
  • Set the environment variables

Environment Variables

VariableRequiredDescription
BITSO_API_KEYYesAPI key from Bitso
BITSO_API_SECRETYesAPI secret for HMAC signature

Roadmap

v0.2 (planned)

  • get_account_status — Get account verification status
  • list_currencies — List available cryptocurrencies
  • create_spei_withdrawal — Create a SPEI (Mexican bank) withdrawal
  • get_phone_number — Get phone number associated with account
  • list_open_orders — List all open orders

v0.3 (planned)

  • recurring_orders — Create and manage recurring buy/sell orders
  • advanced_orders — Advanced order types (OCO, trailing stop)

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 25 Apr 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