Official Bitpanda MCP server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bitpanda": {
"env": {
"BITPANDA_API_KEY": "your-key"
},
"args": [
"--from",
"git+https://github.com/bitpanda-labs/bitpanda-mcp",
"bitpanda-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The official Model Context Protocol (MCP) server for Bitpanda. Connects AI agents — Claude, Cursor, VS Code Copilot, and any MCP-compatible client — directly to the Bitpanda API, giving them secure, read-only access to your asset portfolio, wallet balances, trade history, and real-time market prices.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
portfolio_summaryAnalyze portfolio composition and identify concentration risk
recent_activitySummarize recent trades and fiat transactions
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.
AI agent control of 3D printers — 432 tools for OctoPrint, Moonraker, Bambu, Prusa, Elegoo
MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.
On-chain provenance lookup for AnchorRegistry. Resolve AR-IDs, hashes, and full trees. Authless.
MCP Security Weekly
Get CVE alerts and security updates for Bitpanda Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The official Model Context Protocol (MCP) server for Bitpanda. Connects AI agents — Claude, Cursor, VS Code Copilot, and any MCP-compatible client — directly to the Bitpanda API, giving them secure, read-only access to your asset portfolio, wallet balances, trade history, and real-time market prices.
Built with FastMCP 3.x, Python 3.11+, and uv.
claude mcp add bitpanda -e BITPANDA_API_KEY=your-key -- uvx --from git+https://github.com/bitpanda-labs/bitpanda-mcp bitpanda-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bitpanda": {
"command": "uvx",
"args": ["--from", "git+https://github.com/bitpanda-labs/bitpanda-mcp", "bitpanda-mcp"],
"env": {
"BITPANDA_API_KEY": "your-key"
}
}
}
}
uvx --from git+https://github.com/bitpanda-labs/bitpanda-mcp bitpanda-mcp
Set BITPANDA_API_KEY in your environment or .env file.
Get your Bitpanda API key at web.bitpanda.com/apikey.
| Tool | Category | Description |
|---|---|---|
get_portfolio | portfolio | Aggregated portfolio view across all assets with EUR valuations and sort/sort_by |
get_price | market-data | Current ticker price and currency for any asset by symbol (BTC, ETH, SOL, and more) |
list_prices | market-data | Ticker prices for held assets with ticker data, or a capped market-wide list with all=true/all_assets=true and limit |
get_asset | market-data | Asset metadata by asset UUID |
list_wallets | wallets | All Bitpanda asset wallet balances, with non_zero, asset_id, page_size, and limit filters |
list_transactions | transactions | Raw asset transaction history with wallet_id, flow, asset_id, date filters, and all=true |
list_trades | trades | Normalized buy/sell activity derived from asset transactions, with operation/trade_type, asset_type, date filters, and all=true |
All tools are read-only and annotated with readOnlyHint=true. The server never writes to or modifies your Bitpanda account.
| Prompt | Description |
|---|---|
portfolio_summary | Analyze portfolio composition and identify concentration risk |
recent_activity | Summarize recent trades and asset transactions |
Run the server as a remote HTTP service — multiple users each authenticate per-request with their own Bitpanda API key in the X-Api-Key header. Stateless design supports horizontal scaling.
FASTMCP_TRANSPORT=streamable-http \
FASTMCP_HOST=0.0.0.0 \
FASTMCP_PORT=8000 \
uv run bitpanda-mcp