bitmap-mcp
OfficialProvides tools to query Bitcoin blockchain data including blocks, transaction fees, sat rarity, as well as Ordinals inscriptions, Runes, and Bitmap district information through public APIs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bitmap-mcpwho owns Bitmap district 840000?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bitmap-mcp
Live Bitcoin, Ordinals, Runes, and Bitmap data for any AI agent — over the Model Context Protocol.
bitmap-mcp is a read-only MCP server that lets AI agents (Claude Desktop, Cursor, Claude Code, and anything else that speaks MCP) resolve Bitcoin on-chain facts in real time: a Bitmap district, an Ordinals inscription, a Rune, a sat, a block, and current fees.
Zero config. No API key. No Bitcoin node. Just npx bitmap-mcp.
npx bitmap-mcpWhy
Agents can already reason about Bitcoin in the abstract, but they cannot look anything up natively. Ask an agent "who owns Bitmap district 840000?" or "what is the current supply of DOG GO TO THE MOON?" and it has no tool to answer — it guesses or refuses.
There is no MCP server today that natively resolves a Bitmap district, an inscription, or a rune. bitmap-mcp fills that gap with a tiny, dependency-light, read-only tool surface backed entirely by free public APIs.
Related MCP server: Satstream MCP Server
Quick start
Run it directly:
npx bitmap-mcpThe server speaks MCP over stdio, so you wire it into your agent's config and the agent launches it for you.
Claude Desktop
Add this to your claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,
Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"bitmap": {
"command": "npx",
"args": ["-y", "bitmap-mcp"]
}
}
}Cursor
Add this to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{
"mcpServers": {
"bitmap": {
"command": "npx",
"args": ["-y", "bitmap-mcp"]
}
}
}Claude Code
claude mcp add bitmap -- npx -y bitmap-mcpRestart your client after editing its config. The agent now has six new Bitcoin tools.
Tools
Tool | Arguments | Returns |
|
| The claiming inscription id, owner address, sat, content type, and current location for a Bitmap district (a block height). |
|
| An Ordinals inscription's content type, owner, sat, genesis height, current location, and content URL. |
|
| A Rune's supply, divisibility, holder count, mint status, market cap, floor price, and verification. |
| (none) | Current recommended fee estimates in sat/vB (fastest, half hour, hour, economy, minimum). |
|
| A block summary: hash, timestamp, transaction count, size, weight, difficulty. Omit |
|
| A sat's Rodarmor rarity, the block it was minted in, and its current inscription/owner if inscribed. |
Rune names work with or without bullet separators: DOG•GO•TO•THE•MOON and DOGGOTOTHEMOON both resolve.
Example agent prompts
Once the server is wired in, you can ask your agent things like:
"Use the bitmap tools to tell me who owns Bitmap district 840000 and what the inscription number is."
"What is the current circulating supply and holder count of the rune DOG GO TO THE MOON?"
"What are Bitcoin fees right now, and how big was the latest block?"
"Is sat 1252201400444387 rare, and is anything inscribed on it?"
How it works
bitmap-mcp is read-only and keyless. It never holds funds, never signs anything, and never needs a wallet. Every tool is a thin, typed wrapper over a free public API:
Tool | Data source |
| |
| the reference |
| the keyless Magic Eden Ordinals API |
| the TRAC public Bitmap indexer (primary) with a Magic Eden fallback, enriched with |
Design choices:
No node required. All data comes over HTTPS from public indexers.
No API key. Nothing to sign up for; just run it.
Graceful failure. If an upstream API is briefly unavailable, the tool returns a clean error message — it never crashes the server or the agent session.
Sat rarity is computed locally from Bitcoin's subsidy schedule (ordinal theory), so it is correct and instant; only the current location of an inscribed sat needs the network.
Minimal dependencies. Just the MCP SDK and
zod. The Bitmap indexer is reached over its Socket.IO protocol using the built-infetch, with no extra websocket dependency.
A bitmap district is a Bitcoin block claimed by the first valid <height>.bitmap inscription; its owner owns the district. See the Bitmap theory handbook for background.
Development
git clone https://github.com/BitmapAsset/bitmap-mcp.git
cd bitmap-mcp
npm install
npm run build # compile TypeScript to dist/
npm test # offline unit tests
npm run test:live # live smoke tests against real APIs (network required)
npm run dev # run the server from source with tsxContributing
Issues and pull requests are welcome. Good first contributions:
Add a tool (for example BRC-20 token info, address holdings, or parcel lookup).
Add or swap a data provider with better uptime.
Expand the test suite.
Please keep the project read-only, keyless, and dependency-light. No tool should ever require a private key, a wallet, or a paid API.
License
MIT © 2026 Gravity (BitmapAsset). See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceFacilitates interaction with the Bitcoin network via the Model Context Protocol, enabling key generation, address validation, transaction decoding, and blockchain data retrieval.Last updated78976MIT

Satstream MCP Serverofficial
AlicenseBqualityDmaintenanceA Model Context Protocol server that enables querying Bitcoin blockchain data, including address information, transaction details, mempool statistics, and ordinals/runes data through the Satstream API.Last updated37MIT
Blockscout MCP Serverofficial
FlicenseAqualityCmaintenanceA server that exposes blockchain data (balances, tokens, NFTs, contract metadata) via the Model Context Protocol, enabling AI agents and tools to access and analyze blockchain information contextually.Last updated1842- AlicenseBqualityDmaintenanceA Model Context Protocol server that provides real-time Bitcoin blockchain and mempool data to AI clients, allowing access to comprehensive Bitcoin network information through various data tools.Last updated3185MIT
Related MCP Connectors
Provide AI agents and automation tools with contextual access to blockchain data including balance…
Read-only on-chain intel for AI agents on Base: balances, tokens, gas, tx status. No API keys.
Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BitmapAsset/bitmap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server