bitcoin-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
bitcoin-mcp by AbdelStark | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 74 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
bitcoin-mcp · Summary
An MCP server enabling AI models to interact with Bitcoin and Lightning Network through various tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
bitcoin-mcp · Use cases
- AI assistants providing Bitcoin network information
- Automated analysis of Bitcoin transactions
- Lightning Network payment processing through AI agents
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
bitcoin-mcp · Install
Installation
Claude Desktop Integration
Add the following to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"bitcoin-mcp": {
"command": "npx",
"args": ["-y", "bitcoin-mcp@latest"]
}
}
}Goose Integration
For Goose CLI:
goose configure
# Add Command-Line Extension with:
# Name: bitcoin
# Command: npx -y bitcoin-mcp@latestNPM Installation
npm install -g bitcoin-mcpFor more details, see the [documentation](https://abdelstark.github.io/bitcoin-mcp/).
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything