MCP Catalogs
Home

bitcoin-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

bitcoin-mcp
by AbdelStark
filesystem
by modelcontextprotocol
Stars★ 74★ 85,748
30d uses
Score4377
Official
Categories
FinanceDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

bitcoin-mcp · Use cases

  • AI assistants providing Bitcoin network information
  • Automated analysis of Bitcoin transactions
  • Lightning Network payment processing through AI agents

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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/).

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.