MCP Catalogs
Home

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
Score4377
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit10 mo agothis 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@latest

NPM Installation

npm install -g bitcoin-mcp

For 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
Comparison generated from public README + GitHub signals. Last updated automatically.