- Explore MCP Servers
- maestro-mcp-server
Maestro Mcp Server
Overview
What is Maestro Mcp Server
The maestro-mcp-server is a Model Context Protocol (MCP) server designed for interacting with Bitcoin through the Maestro API platform. It provides tools for exploring various aspects of the Bitcoin blockchain, including blocks, transactions, and addresses.
Use cases
Use cases for maestro-mcp-server include blockchain data analysis, transaction monitoring, and developing applications that require real-time access to Bitcoin blockchain information.
How to use
To use the maestro-mcp-server, first ensure you have Python 3.10 or higher and the Python MCP SDK version 1.2.0. Install the required dependencies using the provided commands, set up a virtual environment, and configure the Claude Desktop settings with the necessary paths and API key.
Key features
Key features of maestro-mcp-server include the ability to explore Bitcoin blockchain data, support for various endpoints, and integration with the Maestro API platform for enhanced functionality.
Where to use
The maestro-mcp-server is primarily used in the cryptocurrency and blockchain sectors, particularly for applications that require interaction with Bitcoin data and transactions.
Content
Maestro MCP Server
A Model Context Protocol (MCP) server for interacting with Bitcoin via the Maestro API platform. Provides tools for exploring blocks, transactions, addresses, and more on the Bitcoin blockchain.
Quick Links
- Hosted Mainnet:
https://xbt-mainnet.gomaestro-api.org/v0/mcp
- Hosted Testnet4:
https://xbt-testnet.gomaestro-api.org/v0/mcp
- API Key Required: Get your Maestro API key
- Client Examples: maestro-mcp-client-examples
Getting Started
Requirements
- Node.js v20 or higher
Installation & Setup
# Install dependencies
npm install
# Build the project
npm run build
# Copy and edit environment variables
cp .env.example .env
# 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:<PORT>/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
- Mainnet:
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:
- Document your changes clearly
- Submit a pull request or open an issue
Local Development
- Use
npm run dev
for hot-reloading (if configured) - Run tests with
npm test