MM

Maestro MCP

Created 5 months ago

A Model Context Protocol (MCP) server for interacting with Bitcoin via the Maestro API platform.

development location documentation public bitcoin

What is Maestro MCP?

An MCP server for interacting with Bitcoin via the Maestro RPC API.

Documentation

Maestro MCP Server

Quick Links

Getting Started# Requirements

Installation & Setup

npm install\n\n# Build the project
npm run build\n\n# Copy and edit environment variables
cp .env.example .env\n\n# Edit .env to add your Maestro API key and any other config

Running the Server

npm run start:http
  • The server will start on the port specified in your .env (default: 3000).
  • Access the MCP endpoint at http://localhost:/mcp.

Features

  • 🚀 Streamable HTTP MCP server (spec)
  • 🔑 API Key authentication (see .env.example)
  • 📦 Multiple APIs:
  • Blockchain Indexer
  • Mempool Monitoring
  • Market Price
  • Wallet
  • Node RPC
  • 🌐 Supported Networks:
  • Mainnet: API_BASE_URL=https://xbt-mainnet.gomaestro-api.org/v0
  • Testnet4: API_BASE_URL=https://xbt-testnet.gomaestro-api.org/v0

API Reference & Examples

Server Generation

This server is generated using openapi-mcp-generator:

npx openapi-mcp-generator --input openapi-merged.json --output ./ --force --transport streamable-http --port 3000

Contributing & Development

Contributions and feature requests are welcome! Please:

Local Development

  • Use npm run dev for hot-reloading (if configured)
  • Run tests with npm test

Support

License

Apache 2.0

Server Config

{
  "mcpServers": {
    "maestro-mcp-server": {
      "command": "npx",
      "args": [
        "maestro-mcp"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: Yes
Global: Yes
Official: Yes

Project Info

Hosted Featured
Created At: Jul 02, 2025
Updated At: Aug 07, 2025
Author: Maestro Organization
Category: community
License: Apache 2.0
Tags:
development location documentation