Doichain MCP Server
Click on "Deploy 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., "@Doichain MCP Servercan you check if this document hash is anchored on the Doichain?"
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.
Endpoint: https://doi-api.sendlabs.de/mcp · Streamable HTTP · stateless · no authentication required
The Doichain is a public blockchain with a built-in name-value store (a Namecoin descendant, merge-mined with Bitcoin). This server makes it usable for any agent that speaks the Model Context Protocol: Claude, ChatGPT, Cursor, VS Code Copilot and many more. Ask your agent in plain language, it picks the right tool itself:
"Anchor the hash of offer-2026.pdf on the Doichain." "Did this contract already exist before October 1?" "Are d/example or id/alice about to expire?" "How is the Doichain doing right now?"
Opening the endpoint in a browser shows the landing page with setup instructions.
Quick start
Claude Code
claude mcp add --scope user --transport http doichain https://doi-api.sendlabs.de/mcpCheck with claude mcp list. Without --scope user the server only applies to the current project.
Claude (web and desktop)
Open Customize → Connectors and click +.
Choose Add custom connector, name it
Doichainand pastehttps://doi-api.sendlabs.de/mcp.In a chat, enable it via + → Connectors.
Custom connectors also work on the free plan (one connector). On Team and Enterprise an owner adds it in the organization settings.
ChatGPT
Turn on Settings → Security and login → Developer mode, then create an app under Plugins → + with the URL above and authentication None. Developer mode is available on the web for Plus, Pro, Business, Enterprise and Education.
Cursor
~/.cursor/mcp.json (all projects) or .cursor/mcp.json (one project):
{
"mcpServers": {
"doichain": { "url": "https://doi-api.sendlabs.de/mcp" }
}
}VS Code (Copilot agent mode)
.vscode/mcp.json:
{
"servers": {
"doichain": { "type": "http", "url": "https://doi-api.sendlabs.de/mcp" }
}
}Any other client
Setting | Value |
URL |
|
Transport | Streamable HTTP ( |
Authentication | none, optionally your own key in the |
Protocol versions | 2024-11-05, 2025-03-26, 2025-06-18, 2025-11-25, 2026-07-28 |
Try it without an AI client using the MCP Inspector: npx @modelcontextprotocol/inspector, choose Streamable HTTP and enter the URL. A small Python example is in examples/check_proof.py.
Related MCP server: DocImprint Document Intelligence
Tools
Tool | What it does | Access |
| Anchor the SHA-256 of a document as proof that it exists now (name | writes |
| Is this hash anchored, since when, in which block? Reports the first anchoring even if an expired proof was anchored again. | reads |
| SHA-256 of a short text (up to 40,000 characters), computed on the server, nothing stored. | server-side |
| Proofs still available today for the caller's IP address. | reads |
| Current value, owner and expiry of a name such as | reads |
| Every registration and update of a name, newest first. | reads |
| Up to 25 names at once: active, expiring soon, expired or free, with dates. | reads |
| Names by prefix (for example all | reads |
| Block height, sync state, last block, fork check, average block interval. | reads |
| A block by height or hash. | reads |
| A transaction with outputs, addresses and name operations. | reads |
| Balance of an address, optionally with recent transactions. | reads |
| Check a message signed with a Doichain address (legacy | reads |
All tools return structured JSON (structuredContent) and carry MCP tool annotations. Only anchor_proof is not read-only. Parameters, return fields and examples: docs/tools.md.
How a proof of existence works
sequenceDiagram
participant U as You
participant A as AI agent
participant M as Doichain MCP server
participant D as Doichain
U->>A: "Anchor offer-2026.pdf"
A->>A: sha256sum offer-2026.pdf (the file never leaves your machine)
A->>M: anchor_proof(sha256)
M->>D: name_doi poe/<sha256> = {"v":1,"alg":"sha256",...}
D-->>M: transaction id (pending)
M-->>A: txid, verify URL
Note over D: next block, usually within 10 minutes
U->>A: "Did this document exist before October 1?"
A->>M: check_proof(sha256)
M->>D: name_show / name_history
M-->>A: confirmed, block 433,335, 2026-09-25 23:21 UTCOnly the hash, and optionally a public note or file name, goes on chain. A SHA-256 cannot be turned back into the document. Anyone can verify a proof later with check_proof or on verifile.it, and changing a single byte of the document produces a different hash. The name poe/<sha256> stays active for 36,000 blocks (roughly seven months), the anchoring transaction and its timestamp stay in the blockchain for good.
Agents need access to the file to hash it (Claude Code, Cursor, VS Code). In a plain chat, Verifile is the easiest way: drop the file, it is hashed in the browser and anchored with one click.
Limits and quotas
Limit | Value |
Anchoring | free for users, 10 proofs per IP address per UTC day, at most 200 per day for all users together |
Requests | 10 per second per IP address (burst 40), JSON-RPC error |
Request size | 256 KB, |
Reading and checking | unlimited within the request rate |
Hosted chat apps (Claude on the web, ChatGPT) connect from their providers' data centers, so all their users share the quota of those addresses. For regular anchoring use a client that connects from your own machine (Claude Code, Cursor, VS Code) or ask DOI Labs for an own key. Anchoring pauses automatically when the operating balance of the node wallet falls below a reserve, reading keeps working.
Security and privacy
Hashes only. The server accepts no files.
hash_textsees a short text and forgets it immediately.No wallet functions. The server cannot send coins, change names or call node RPCs. It runs as a separate service under its own system user, without read access to the API's key file, and may only open local connections.
Prompt injection protection. Names and values written to the chain by strangers are returned in fields ending in
_untrustedtogether with a notice, and the server instructions tell agents to treat them as data only.DNS rebinding protection. Host and Origin headers are validated.
No tracking. No cookies, no third-party resources on the landing page. Like any web server, IP addresses appear in access logs and count toward the daily quota. Content is not stored.
Found a vulnerability? Please use private vulnerability reporting, see SECURITY.md.
Protocol behavior
Streamable HTTP in stateless mode with JSON responses, so any number of workers can serve requests without session affinity.
POST /mcpfor all MCP messages.GET /mcpfrom a browser returns the landing page, any otherGETorHEADreturns405withAllow: POST(there is no server-to-client SSE stream in stateless mode).No JSON-RPC batches (removed from the protocol in 2025-06-18). No CORS, so clients running directly inside a web page are not supported.
GET /mcp/healthfor monitoring.
Architecture
AI agent ──HTTPS──▶ nginx ──▶ doichain-mcp (this repo, 127.0.0.1:8081)
│ REST calls only, client IP passed on for the quota
▼
Doichain REST API (127.0.0.1:8080) ──▶ Doichain Core v31.1.6 + ElectrumXThe MCP server is a thin, stateless layer over the Doichain REST API (interactive docs), which runs next to a full Doichain Core node. See docs/self-hosting.md to run your own instance.
Development
python -m venv .venv
. .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e ".[dev]"
pytest -q # offline tests, the REST API is mocked
ruff check .
# run locally against the public REST API (reading works, anchoring needs your own key)
DOI_MCP_API_URL=https://doi-api.sendlabs.de python -m doichain_mcp
npx @modelcontextprotocol/inspector # connect to http://127.0.0.1:8081/mcpReleases follow semantic versioning. Pushing a tag vX.Y.Z runs the tests and publishes server.json to the official MCP Registry via GitHub Actions (OIDC, no secrets). The tag, server.json and pyproject.toml must carry the same version. See CONTRIBUTING.md and CHANGELOG.md.
Related
Verifile: proof of existence by drag and drop, no upload
Doichain REST API: the HTTP interface behind this server, with a live playground
Doichain Core: the reference node
Doichain Explorer: blocks, transactions and names
License and operator
MIT © 2026 DOI Labs AG. The hosted endpoint is operated by DOI Labs, legal notice.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cryptographic proof-of-existence notarization for AI agents. Free tier + paid $0.01 USDC via x402.
Durable identity and memory for AI agents, anchored on the Emercoin blockchain.
Privacy-first document verification anchored to the public ledger.
Tamper-evident proof creation and verification for AI agents via MCP, A2A, and REST.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI agents to certify documents, prove agreements, and verify counterparty claims with on-chain receipts on Hedera Hashgraph. Provides tools for document certification, two-party attestation, and agent registration with zero-config setup.631 npmMIT
- AlicenseAqualityBmaintenanceVerifiable document intelligence for AI agents. Extract text, tables, and structured data from PDFs and URLs. Summarize, answer questions, check claims, and translate — all with cited evidence. Store tamper-evident evidence bundles with cryptographic signatures and on-chain attestation via Base L2. Cross-document semantic search and Q&A across named collections. Pay per call with USDC2211 npm1MIT
- AlicenseAqualityCmaintenanceEnables AI agents to certify their creations with verifiable, timestamped proof anchored to Bitcoin, and to verify certificates.3MIT
- AlicenseNot gradedqualityBmaintenanceEnables on-chain attestation of any content onto the DigiByte blockchain, providing permanent, timestamped, tamper-evident proofs. Allows AI agents to notarize their outputs or verify attestations using only the blockchain.5 npmMIT