Open-source MCP server exposing verified Bitcoin data (price, fees, block height, network stats) to AI coding assistants like Claude Code, Cursor, and Cline.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"bitcoin-card": {
"command": "npx",
"args": [
"-y",
"zartyblartfast/bitcoin-card"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add bitcoin-card npx -y zartyblartfast/bitcoin-card
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"bitcoin-card": {
"command": "npx",
"args": [
"-y",
"zartyblartfast/bitcoin-card"
]
}
}
}
📋 Copy