Read-only DERO daemon MCP tools for chain inspection and analysis.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A read-only Model Context Protocol server for the DERO privacy blockchain β a private-by-default Layer 1 with encrypted balances, private smart contracts (DVM-BASIC), and no public transaction graph. 21 daemon primitives + 12 composite tools (including TELA on-chain app inspection and dURLβSCID discovery), with a bundled documentation index spanning derod, tela, hologram, and deropay.
Registry listing: io.github.DHEBP/dero-mcp-server Β· Version: 0.6.0 Β· Transports: stdio (default, npm package) Β· streamable-http (--http, for self-hosting)
An MCP server (Model Context Protocol) is a small program that gives your AI assistant β Claude Desktop, Cursor, OpenCode, ChatGPT with Custom Connectors β the ability to call specific tools on your behalf. Instead of the AI talking about DERO from memory, it can actually look things up: fetch a block, read a contract, search the docs, trace a transaction, estimate a deploy.
You install it once and point your AI host at it. From then on, every DERO question you ask in chat hits live chain data and the bundled docs corpus β not the AI's training cutoff.
If you're new to DERO: it's a privacy-first L1 blockchain β often described as a private alternative to Ethereum for builders who want smart contracts without a transparent ledger, or as a Monero alternative for users who want account-based privacy with native programmability instead of UTXO-only payments. Homomorphically encrypted balances. Ring signatures hide senders. Zero-knowledge range proofs (Bulletproofs) hide amounts. There is no public transaction graph. The current mainnet is DERO Stargate.
Full docs: derod.org
Model Context Protocol (MCP) server that exposes read-only and analysis calls against a DERO Stargate daemon JSON-RPC endpoint. Ships as a stdio process for local MCP hosts (Claude Desktop, Cursor, OpenCode) or in streamable-HTTP mode behind a domain (e.g. mcp.derod.org) for ChatGPT Custom Connectors, Cursor hosted mode, and any agent that needs a remote URL. See deploy/ for a reference self-hosted deployment.
Get a working DERO MCP connection in under 5 minutes.
node --version.127.0.0.1:10102, the server detects and uses it automatically; otherwise it falls back to a public RPC, so it works with zero setup. Run your own for production β how to.| Host | Where |
|---|---|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Cursor | Settings β MCP β Add Server |
| OpenCode | Settings β MCP β Add Server |
| Codex CLI / IDE | codex mcp add or ~/.codex/config.toml |
Create the file if it doesn't exist.
This uses npx to fetch and run the latest published version β no manual install or build required.
The server auto-detects a local node at 127.0.0.1:10102. To pin a specific daemon (custom port or a remote URL), add an env block:
Fully quit and reopen β not just refresh. MCP servers load at startup.
In a new chat:
"What's the current DERO chain height?"
A number back means you're connected. If you see an error, confirm the config file path is correct and your host was fully restarted (not just refreshed).
Once it's working, jump to Try a prompt for a full tour.
Once installed, your MCP host can do all of these on your behalf β in natural language, no JSON-RPC needed:
vault.tela β SCID), browse what's deployed, inspect an app's manifest and files, and read the actual on-chain HTML/JS/CSS β no separate indexer to runAfter installing and restarting your MCP host, paste any of these. Start simple and work up.
Single-tool questions that verify the install and exercise live queries.
"What's the current DERO chain height?"
"Resolve the DERO name 'engram' to an address."
"Find the documentation page on Bulletproofs."
"What does the smart contract at SCID 0000β¦0001 do?"
Composite tools that fan out into multiple primitives and return a synthesized answer with citations.
"Explain the smart contract at SCID 0000000000000000000000000000000000000000000000000000000000000001 β what it does, its functions, and which DVM-BASIC docs are relevant."
"Trace transaction with full context β confirmation, classification, and what it touched."
"What's the right reading path for someone new to DERO smart contracts who wants to deploy a DVM-BASIC contract?"
"Estimate the gas cost to deploy this DVM source: "
TELA apps are full web apps (HTML/CSS/JS) deployed entirely on-chain. The server discovers and reads them with no external indexer β the first discovery query runs a one-time ~15s scan, then it's instant.
"What's the SCID for vault.tela?"
"What TELA apps exist on DERO? Show me a few."
"Inspect the TELA app at SCID β what is it, who made it, and what files does it have?"
"Show me the actual HTML of that app's index.html."
For multi-step agent recipes, per-tool guidance, error contract, and the composite-first rule, see SKILL.md.
Not included (by design): wallet RPC (transfer, scinvoke), DERO.SendRawTransaction, DERO.SubmitBlock. Those can move funds or consensus data; add them only with explicit user consent and a locked-down setup.
SKILL.md β per-tool agent runbook: composite-first rule, structured error contract, citation rules, agent-loop recipes, port reference.POSITIONING.md β who DERO MCP is for, who it isn't, comparison vs ACP / Stripe / Crossmint / Skyfire, privacy posture.Run (auto-detects a local node at 127.0.0.1:10102, else public fallback, when DERO_DAEMON_URL is unset):
Or set an explicit URL (e.g. your local daemon):
Daemon resolution is local-first: with DERO_DAEMON_URL unset, the server uses a local node at 127.0.0.1:10102 if it answers, else the baked-in third-party public RPC (82.65.143.182:10102). Prefer your own node for privacy.
Strip a trailing /json_rpc if you paste a full JSON-RPC URL β this server appends /json_rpc.
For clients that can't launch a local subprocess β ChatGPT Custom Connectors, Cursor hosted mode, n8n / Zapier integrations β run the server in streamable-HTTP mode and put it behind your own domain:
Both stdio and HTTP serve MCP 2026-07-28 and retain compatibility with 2025-era clients. HTTP exchanges are stateless and do not issue Mcp-Session-Id; 2026 clients negotiate through server/discover.
| Variable | Default | Description |
|---|---|---|
DERO_MCP_HTTP | unset | Set to 1 (or pass --http) to start in HTTP mode. |
DERO_MCP_HTTP_PORT | 8787 | Listen port. |
DERO_MCP_HTTP_HOST | 127.0.0.1 | Listen address. Use 0.0.0.0 to bind publicly (do not without auth + TLS upstream). |
DERO_MCP_AUTH_TOKEN | unset | If set, every /mcp request must carry Authorization: Bearer <token>. Constant-time compared. |
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/dero-mcp-server)<a href="https://allmcps.com/mcp/dero-mcp-server"><img src="https://allmcps.com/api/badge/dero-mcp-server?style=directory" alt="DERO MCP Server on AllMCPs" /></a>