by maestro-org
Maestro MCP Server is a Model Context Protocol (MCP) server for interacting with Bitcoin via the Maestro API platform, providing tools for exploring blocks, transactions, addresses, and more on the Bitcoin blockchain.
Maestro MCP Server is an MCP (Model Context Protocol) server designed to facilitate interaction with the Bitcoin blockchain through the Maestro RPC API. It acts as a bridge, allowing users and applications to explore various aspects of the Bitcoin network, including blocks, transactions, and addresses.
To use Maestro MCP Server, you need Node.js v20 or higher. After cloning the repository, install dependencies with npm install
, build the project with npm run build
, and then copy .env.example
to .env
to configure your Maestro API key and other settings. You can then start the server using npm run start:http
. The server will run on the port specified in your .env
file (default: 3000), and the MCP endpoint will be accessible at http://localhost:<PORT>/mcp
.
Maestro MCP Server can be used for:
maestro-mcp-client-examples
GitHub repository.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.
https://xbt-mainnet.gomaestro-api.org/v0/mcp
https://xbt-testnet.gomaestro-api.org/v0/mcp
# 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
npm run start:http
.env
(default: 3000).http://localhost:<PORT>/mcp
..env.example
)API_BASE_URL=https://xbt-mainnet.gomaestro-api.org/v0
API_BASE_URL=https://xbt-testnet.gomaestro-api.org/v0
This server is generated using openapi-mcp-generator
:
npx openapi-mcp-generator --input openapi-merged.json --output ./ --force --transport streamable-http --port 3000
Contributions and feature requests are welcome! Please:
npm run dev
for hot-reloading (if configured)npm test
Please log in to share your review and rating for this MCP.