Package Exports
- @bitcompare/mcp-server
- @bitcompare/mcp-server/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@bitcompare/mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@bitcompare/mcp-server
Official Model Context Protocol server for bitcompare — crypto rates, prices, coin metadata, and market stats for Claude and other MCP-compatible agents.
Requires a Bitcompare Pro or Enterprise plan. Get a key at https://pro.bitcompare.net.
What you get
18 tools covering:
- Rates — current & historical yields across lending, savings, and staking providers
- Coins — metadata, markets, history, similar coins, top-by-market-cap lookups
- Prices — aggregated exchange prices
- Global market stats — summary, Fear & Greed, top movers
- Stablecoins — stability leaderboard, peg deviation history
- Symbol resolution — map exchange-specific tickers to canonical coin IDs
Full tool catalog: https://www.bitcompare.net/mcp and https://api.bitcompare.net/mcp/llms.txt.
Install
You don't need to install it — run via npx:
BITCOMPARE_API_KEY=ck_live_... npx @bitcompare/mcp-server --testConfigure Claude Desktop
Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"bitcompare": {
"command": "npx",
"args": ["-y", "@bitcompare/mcp-server"],
"env": {
"BITCOMPARE_API_KEY": "ck_live_..."
}
}
}
}Restart Claude Desktop. Ask "what's the best yield on BTC right now?" — Claude will call get_rates and answer from live data.
Configure Claude Code
In your project's .claude/settings.local.json:
{
"mcpServers": {
"bitcompare": {
"command": "npx",
"args": ["-y", "@bitcompare/mcp-server"],
"env": {
"BITCOMPARE_API_KEY": "ck_live_..."
}
}
}
}Hosted alternative
If you prefer not to install anything, we also run the MCP server at https://api.bitcompare.net/mcp over Streamable HTTP. Point your MCP client at that URL with an Authorization: Bearer ck_live_* header.
CLI flags
--test— validate your key and list available tools, then exit--version— print version--help— print help--base-url <url>— override API base URL (for staging/dev)
Support
- Documentation: https://www.bitcompare.net/mcp
- Issues: https://github.com/bitcompare/services/issues
- Email: support@bitcompare.net