drio
Open app

DEPRECATION NOTICE

Source

ZBD MCP Server

Catalog onlyCatalog onlySTDIO

Overview

ZBD MCP Server is a modular server that integrates Bitcoin payment capabilities into your applications using the ZBD API.

To use the ZBD MCP Server, set up your environment with Node.js and Bun, obtain a ZBD API key, and follow the installation instructions to build and run the server.

  • Supports multiple Bitcoin payment functionalities through a modular architecture. - Allows for the creation of standalone tools for various payment operations. - Provides a comprehensive set of APIs for managing Bitcoin transactions.
  1. Integrating Bitcoin payments into web applications.
  2. Creating custom tools for handling Bitcoin transactions.
  3. Automating payment processes for online services.

Add to your AI client

Use these steps to connect DEPRECATION NOTICE 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": {
    "zbd-mcp-server-zebedeeio": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zbd-mcp-server-zebedeeio"
      ]
    }
  }
}

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": {
    "zbd-mcp-server-zebedeeio": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zbd-mcp-server-zebedeeio"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is required to run the ZBD MCP Server?

You need Node.js 23+, Bun, and a ZBD API key.

Can I create my own tools with ZBD MCP Server?

Yes! You can create new tools by following the provided guidelines in the documentation.

Is there support for testing the server?

Yes, the server includes testing commands to ensure functionality.