
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
Read-only MCP server that gives AI agents live Bitcoin on-chain, Ordinals, Runes, and Bitmap data. Zero-config, no API key, no Bitcoin node.
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-mcp
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.
Run it directly:
npx bitmap-mcp
The server speaks MCP over stdio, so you wire it into your agent's config and the agent launches it for you.
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"]
}
}
}
Add this to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{
"mcpServers": {
"bitmap": {
"command": "npx",
"args": ["-y", "bitmap-mcp"]
}
}
}
claude mcp add bitmap -- npx -y bitmap-mcp
Restart your client after editing its config. The agent now has six new Bitcoin tools.
| Tool | Arguments | Returns |
|---|---|---|
get_bitmap | district: number | The claiming inscription id, owner address, sat, content type, and current location for a Bitmap district (a block height). |
get_inscription | id: string | An Ordinals inscription's content type, owner, sat, genesis height, current location, and content URL. |
get_rune | name: string | A Rune's supply, divisibility, holder count, mint status, market cap, floor price, and verification. |
get_fees | (none) | Current recommended fee estimates in sat/vB (fastest, half hour, hour, economy, minimum). |
get_block | height?: number | A block summary: hash, timestamp, transaction count, size, weight, difficulty. Omit height for the chain tip. |
resolve_sat | sat: number | 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.
Once the server is wired in, you can ask your agent things like:
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 |
|---|---|
get_fees, get_block | mempool.space |
get_inscription, resolve_sat | the reference ord server recursive API at ordinals.com |
get_rune | the keyless Magic Eden Ordinals API |
get_bitmap | the TRAC public Bitmap indexer (primary) with a Magic Eden fallback, enriched with ord metadata |
Design choices:
zod. The Bitmap indexer is reached over its Socket.IO protocol using the built-in fetch, 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.
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 tsx
Issues and pull requests are welcome. Good first contributions:
Please keep the project read-only, keyless, and dependency-light. No tool should ever require a private key, a wallet, or a paid API.
MIT © 2026 Gravity (BitmapAsset). See LICENSE.
FAQs
Read-only MCP server that gives AI agents live Bitcoin on-chain, Ordinals, Runes, and Bitmap data. Zero-config, no API key, no Bitcoin node.
We found that bitmap-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.