B
Bitcoin
Integrates with Bitcoin network and blockchain data via Blockstream API to enable transaction monitoring, wallet management, and blockchain analysis
Share:
About
Integrates with Bitcoin network and blockchain data via Blockstream API to enable transaction monitoring, wallet management, and blockchain analysis
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Bitcoin.
- What is the purpose of the Bitcoin MCP?
- The Bitcoin MCP integrates with the Bitcoin network and blockchain data through the Blockstream API. It enables transaction monitoring, wallet management, and blockchain analysis for developers.
- How can I install the Bitcoin MCP in a client such as Cline?
- Installation in a client like Cline typically involves cloning the repository from https://github.com/abdelstark/bitcoin-mcp and following the client's specific instructions for adding local MCPs. Refer to your client's documentation for detailed steps.
- Does the Bitcoin MCP require an API key or other credentials?
- The Bitcoin MCP uses the Blockstream API. The provided information indicates the authorization type for the MCP itself is 'none', meaning no direct credentials are required for the MCP. However, the Blockstream API itself might require credentials depending on usage levels or specific features. This MCP is intended for local integration using standard I/O; any API keys would be within your environment.
- What are the key capabilities offered by this MCP?
- The key capabilities of this MCP include transaction monitoring, facilitating wallet management, and performing analytics on blockchain data. It communicates via standard input/output (stdio).
- What are the cost and licensing terms for the Bitcoin MCP?
- The Bitcoin MCP's repository is publicly available, suggesting an open-source license. The cost and licensing of the underlying Blockstream API depend on Blockstream's terms of service and usage tiers; consult their documentation for specifics.
- What is a realistic limitation when using the Bitcoin MCP?
- A realistic limitation is that while the MCP uses stdio for transport, its functionality is entirely dependent on the availability and performance of the external Blockstream API. Network latency and API rate limits could affect its responsiveness and data access.
Install Bitcoin
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"bitcoin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitcoin"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"bitcoin": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitcoin"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"bitcoin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bitcoin"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.