drio
Open app

bitcoin-mcp.server

Source

Catalog onlyCatalog onlySTDIO

Overview

bitcoin-mcp.server is a server application designed to facilitate the management and processing of Bitcoin transactions and related data.

To use bitcoin-mcp.server, clone the repository from GitHub, set up the server environment, and configure it according to your Bitcoin network requirements.

  • Efficient handling of Bitcoin transactions - Real-time data processing and analytics - Support for multiple Bitcoin network configurations
  1. Managing Bitcoin transactions for e-commerce platforms.
  2. Analyzing Bitcoin market trends and data.
  3. Integrating with wallets and exchanges for transaction processing.

Add to your AI client

Use these steps to connect bitcoin-mcp.server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "products-mcp-server-fwilliams96": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "products-mcp-server-fwilliams96": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "products-mcp-server-fwilliams96": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "products-mcp-server-fwilliams96": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "products-mcp-server-fwilliams96": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "products-mcp-server-fwilliams96": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-products-mcp-server-fwilliams96"
      ]
    }
  }
}

FAQ

Is bitcoin-mcp.server open source?

Yes! The project is available on GitHub and is open for contributions.

What programming language is used?

The server is developed in Java.

How can I contribute to the project?

You can contribute by submitting issues, pull requests, or suggestions on the GitHub repository.