MCP.so
Sign In

MCP Bitpanda Server

@matteoantoci

About MCP Bitpanda Server

An MCP server for interacting with the Bitpanda API

Basic information

Category

Other

License

View license

Runtime

node

Transports

stdio

Publisher

matteoantoci

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-bitpanda": {
      "command": "npx",
      "args": [
        "-y",
        "@smithery/cli",
        "install",
        "@matteoantoci/mcp-bitpanda",
        "--client",
        "claude"
      ]
    }
  }
}

Tools

9

Retrieves detailed information for a specific asset by its symbol (e.g., BTC, XAU).

Retrieves OHLC (Open/High/Low/Close) data for a specific asset, fiat currency, and timeframe.

Lists all user's trades from the Bitpanda API. Newest trades come first. Response is cursor paginated.

Lists all user's asset wallets grouped by asset type from the Bitpanda API.

Lists all user's fiat wallets from the Bitpanda API.

Lists all user's fiat transactions from the Bitpanda API. Newest fiat transactions come first. Response is cursor paginated.

Lists all user's crypto wallets from the Bitpanda API.

Lists all user's crypto transactions from the Bitpanda API. Newest crypto transactions come first. Response is cursor paginated.

Lists all user's commodity transactions from the Bitpanda API. Newest commodity transactions come first. Response is cursor paginated.

Overview

What is MCP Bitpanda Server?

A Model Context Protocol (MCP) server that exposes tools for interacting with the Bitpanda API. It allows programmatic access to Bitpanda features like trades, wallets, and transactions via the MCP protocol.

How to use MCP Bitpanda Server?

You need Node.js v18+, npm, and a Bitpanda API key set as the BITPANDA_API_KEY environment variable. Clone the repository, run npm install and npm run build, then start with node build/index.js or npm run start. For automatic installation on Claude Desktop, use Smithery: npx -y @smithery/cli install @matteoantoci/mcp-bitpanda --client claude. Configure your MCP client to run the server via stdio transport.

Key features of MCP Bitpanda Server

  • Retrieve asset info and OHLC data without API key
  • List trades with buy/sell filter and cursor pagination
  • List asset wallets grouped by asset type
  • List fiat and crypto wallets and transactions with filters
  • List commodity transactions with cursor pagination
  • All tools accessible via the MCP protocol

Use cases of MCP Bitpanda Server

  • Query asset details and historical price data for analysis
  • Review and filter personal trade history (buy/sell) with pagination
  • Monitor wallet balances across crypto, fiat, and commodities
  • Track fiat and crypto transactions for reconciliation
  • Integrate Bitpanda account data into AI‑powered workflows via MCP

FAQ from MCP Bitpanda Server

What are the prerequisites to run MCP Bitpanda Server?

Node.js v18 or later, npm, a Bitpanda API key set as the BITPANDA_API_KEY environment variable, and optionally an MCP‑compatible client.

Do any tools require an API key?

The tools get_asset_info and get_ohlc do not require an API key. All other tools (list_trades, list_asset_wallets, etc.) require a valid Bitpanda API key.

How can I install MCP Bitpanda Server for Claude Desktop?

Install automatically via Smithery: npx -y @smithery/cli install @matteoantoci/mcp-bitpanda --client claude.

How do I run the server directly?

After building, run node build/index.js or npm run start. For MCP clients, configure stdio transport pointing to the built index.js and set the BITPANDA_API_KEY environment variable.

Where does the data come from?

All data is retrieved in real‑time from the Bitpanda API; no local data storage is mentioned.

Comments

More Other MCP servers