bsv-aio-mcp
Provides grounded answers about Bitcoin SV from pinned snapshots of BRC specifications, Bitcoin Script opcodes, BEEF transaction formats, the Rúnar smart-contract toolchain, Tier 0 SDKs, and Craig Wright's essays.
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., "@bsv-aio-mcpcheck if run-sdk is denied and what's its successor"
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.
BSV-AIO-MCP
A read-only Model Context Protocol server that gives any
MCP-capable assistant (Cursor, Claude Desktop, Claude Code, …) grounded answers about
Bitcoin SV: the BRC specifications, Bitcoin Script opcodes, BEEF transaction formats, the
Rúnar smart-contract toolchain, the Tier 0 SDKs (@bsv/sdk, @bsv/wallet-toolbox, go-sdk,
go-wallet-toolbox) and a structured corpus of Craig Wright's essays.
It answers from a pinned snapshot of these sources — never from the live web.
Design invariants
Snapshot-only. Every claim quotes a contiguous slice of a cited, pinned document. The server never fetches live HTTP and never actuates (no broadcasting, no wallet creation, no faucet claims). Live facts are declared in
needsfor the host to resolve.Fail-closed. When the snapshot cannot answer, the server says so (
insufficient+ a specific gap) instead of presenting incidental mentions as an answer.Authority model. BRCs rank 1, SDK/package cards 2, ops playbooks 3, essays 4. A named or governing spec always outranks commentary.
Deny list. Deprecated/unsafe packages (
bsv,run-sdk,js-1sat-ord, …) are never recommended; naming one as a dependency returns the denial, its reason (e.g. CVE-2025-69287) and its successor.Recency honesty. "Latest/newest/superseded" questions are answered as of the pin date, with the pin declared in the package's
gaps.
Related MCP server: Official Solana MCP Server
Install
Requires Node.js ≥ 22.13. No build step, no API keys, no network access at runtime.
Add to your MCP client config — Cursor (~/.cursor/mcp.json), Claude Desktop
(claude_desktop_config.json), or equivalent:
{
"mcpServers": {
"bsv-aio": {
"command": "npx",
"args": ["-y", "bsv-aio-mcp"]
}
}
}Restart the client. The server builds its local SQLite index from the shipped snapshot on first launch (a few seconds), then answers over stdio.
From source
git clone https://github.com/BMX-Casey94/BSV-AIO-MCP.git
cd BSV-AIO-MCP
npm install
npm run buildThen point the client at the built entry directly:
{
"mcpServers": {
"bsv-aio": {
"command": "node",
"args": ["C:/path/to/BSV-AIO-MCP/server/dist/index.mjs"]
}
}
}Configuration
Env var | Default | Purpose |
| the installed package root | Corpus root override (development). |
|
| Index cache location. |
Tools
Tool | What it returns |
| A structured EvidencePackage: claims with citations, hits, gaps, contradictions, declared live needs, and an answer sketch. The main entry point. |
| Ranked hits over the pinned snapshot (BM25), with kind/authority/theme/network/language/era filters. |
| The full pinned text behind any hit ( |
| Curated contradiction findings across the essay corpus. |
| The snapshot pin: revision, fetch date, document counts, policy version. Read this before trusting any hit. |
| Tier 0 SDK symbol cards and reference graphs. |
| Which confirmed package owns a concept ("BEEF", "runar", …). |
| Pinned service schemas (e.g. the BRC-100 wallet interface). |
| The pinned |
| Pinned test vectors (e.g. BRC-100 |
| Read-only policy: is this package name denied (with reason and successor), confirmed in the pinned Tier 0/1 cards, or unknown? Absence from the deny list is never an endorsement. |
| Read-only policy: which network does this intent belong on? Testing on mainnet gets |
The corpus
The snapshot pins: the BRC index and full BRC bodies; BSV Academy opcode/Script documentation; the Rúnar documentation set; Tier 0 package/symbol/spec cards plus Tier 0/1 repo documentation (READMEs, docs, examples) with evidenced BRC-to-package edges; a deny list; testnet operations notes; ordinality/provenance rules; curated Teranode throughput benchmark facts (AWS 1M TPS trial, SSRN 79.09B TPS preprint — conditions and sources inline); an attributed analysis card on Bitcoin's 2014–2017 direction change (documented / disputed / unproven kept separate); and 476 summarised Craig Wright essays (Medium 2018–2022 and Substack 2025–2026) with a curated contradiction map. See CORPUS.md for the full corpus documentation.
The snapshot is the product: answers are reproducible and auditable against it. It does
not update itself. npx bsv-aio-mcp serves whatever pin was inside the last npm
publish. The operator refreshes weekly (or on a repo tag) with the gated jobs below,
then republishes so consumers receive the new pin. Full policy:
mcp/refresh-policy.md.
$env:BSV_AIO_ALLOW_REFRESH = "1"
npm run refresh:tier0 --workspace=server # Tier 0 SDKs/wallets + BRC bodies (regenerates brc_index.json)
npm run refresh:tier1 --workspace=server # Tier 1 services/libraries
npm run fetch:academy --workspace=server # Academy + Rúnar
npm testEach job is guarded against accidental corpus collapse (80% retention). Review the
diff, commit, bump the patch version, and npm publish.
Development
npm install # install workspace deps
npm run build # bundle server/dist
npm test # 210 tests: goldens (A–D), tools, composition, ingest
npm run typecheck # tsc --noEmit
node server/probe-full-battery.mjs # adversarial smoke battery against the built serverSecurity model
Stdio transport only — no network listener. All tool inputs are schema-validated with length
caps; FTS queries are tokenised, quoted and capped; snapshot file reads are confined to the
corpus root (symlink-resolved); the serving database handle is reopened read-only after
ingest; the deny list and live-fetch refusal cannot be bypassed by prompt phrasing. The
threat model and test battery are in server/test/.
This server cannot be installed
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
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, deep-read, and build knowledge bases from Markdown, PDF, DOCX, and PPTX documents via MCP tools for retrieval, document navigation, and ingestion.70616MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to access and search up-to-date Solana documentation, get canonical spec references, and fix Anchor/Pinocchio Solana programs via MCP tools.2980MIT
- FlicenseNot gradedqualityDmaintenanceEnables grounding AI responses in a local document corpus by exposing MCP tools to list, search, and summarize documents, and generating answers using OpenAI.
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to search, read, and traverse documentation bundles in Open Knowledge Format via MCP tools.73366MIT
Related MCP Connectors
Version-true web3 docs, ABIs and human-validated integration recipes over MCP.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Read-only XRP Ledger MCP tools with proof-annotation envelopes and signed daily snapshots.
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/BMX-Casey94/BSV-AIO-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server