API Tools
derod.org
Provides DERO blockchain daemon interactions including connectivity checks, metadata queries, and block information retrieval.
ENDPOINT 1
https://mcp.derod.org/mcp
MCP server metadata
- Name
- dero-daemon-mcp
- Version
- 0.6.0
Known tools 33
dero_get_infoGet DERO daemon and chain metadata: height, topoheight, stableheight, difficulty, version, network, mempool size, and total supply (DERO.GetInfo).
Inferred read-onlydero_get_heightGet the current block heights: tip height, stable height (finalized), and topoheight (canonical ordering) via DERO.GetHeight.
Inferred read-onlydero_get_last_block_headerGet the header of the current tip block via DERO.GetLastBlockHeader (no full block body).
Inferred read-onlydero_get_blockFetch a full block (header + miner_tx + transactions + topo position) by height OR hash via DERO.GetBlock.
Inferred read-onlydero_get_block_header_by_topo_heightGet a block header by topological height (canonical ordering) via DERO.GetBlockHeaderByTopoHeight.
Inferred read-onlydero_get_block_header_by_hashGet a block header by its 64-char hex hash via DERO.GetBlockHeaderByHash.
Inferred read-onlydero_get_random_addressGet random registered addresses from the chain (used for ring construction in private transfers) via DERO.GetRandomAddress.
Inferred read-onlydero_get_transactionFetch one or more transactions by hash via DERO.GetTransaction.
Inferred read-onlydero_get_encrypted_balanceGet the ENCRYPTED balance blob for a DERO address at a topo height via DERO.GetEncryptedBalance.
Inferred read-onlydero_get_scRead smart contract state (code and/or stored variables) by SCID via DERO.GetSC.
Inferred read-onlydero_get_gas_estimateEstimate gas (compute + storage) for transfers, SC deploys, or SC invokes via DERO.GetGasEstimate.
Inferred read-onlydero_name_to_addressResolve a DERO on-chain registered name to its address via DERO.NameToAddress.
Inferred read-onlydero_get_block_templateGet a mining block template for a miner payout address via DERO.GetBlockTemplate.
Inferred read-onlydero_decode_proof_stringDecode any DERO bech32 string (`dero…`, `deto…`, `deroi…`, `detoi…`, or `deroproof…`) into its constituent parts: HRP, network, compressed public key, and any embedded RPC arguments (CBOR-encoded).
Inferred read-onlydero_docs_searchSearch the bundled DERO documentation index across derod, tela, hologram, and deropay (145+ pages).
Inferred read-onlydero_docs_get_pageGet a single bundled docs page by slug, with plain-text content and headings.
Inferred read-onlydero_docs_listList indexed bundled docs pages across all four products with slugs, titles, and canonical URLs.
Inferred read-onlyverify_supplyComposite: recompute DERO total supply offline via CalcSupply (premine + one-time launch credit + Σ CalcBlockReward epochs — DEROFDN community-dev / dero-docs schedule), optionally cross-check against DERO.GetInfo.total_supply.
Inferred read-onlydiagnose_chain_healthComposite: run a four-step chain (DERO.Ping → DERO.GetInfo → DERO.GetHeight → DERO.GetTxPool) and return a single narrative health report with chain metadata, mempool snapshot, machine-readable signals, and curated docs citations.
Inferred read-onlyexplain_smart_contractComposite: fetch a DERO smart contract (code + variables + balances) and return its function surface, a classification of the contract pattern (tela_index | tela_doc | token | registry | minimal | generic), a plain-language narrative, and curated DVM docs citations re-ordered so the most relevant page is first.
Inferred read-onlytela_inspectComposite: fetch a TELA contract by SCID (DERO.GetSC code + variables) and parse it as either a TELA-INDEX-1 app manifest or a TELA-DOC-1 file contract, auto-detecting which standard it is from the stored keys.
Inferred read-onlytela_get_doc_contentComposite: fetch the actual file content stored in a TELA-DOC-1 contract.
Inferred read-onlydero_tela_list_appsComposite: list/browse the TELA apps discovered on-chain (each with its dURL, name, SCID, and doc count) — answers "what TELA apps exist?" without any external indexer.
Inferred read-onlyrecommend_docs_pathComposite: take a natural-language intent, fan out parallel scoped searches across the bundled docs for all four DERO products (derod, tela, hologram, deropay), boost any product_hint matches by 1.5×, and return a ranked recommendation list with per-result rationale plus ready-to-cite related_docs.
Inferred read-onlyestimate_deploy_costComposite: send a DVM-BASIC contract source to the daemon's gas estimator, then return the raw estimate alongside a plain-text breakdown (what each gas number means), the parsed contract surface, and curated DVM deploy docs as citations.
Potential side effectstrace_transaction_with_contextComposite: look up a DERO transaction by hash, classify its confirmation status (confirmed | mempool | unknown) and kind (sc_install | transfer_or_invocation | coinbase | unknown), extract the SC surface inline when the tx is a contract install, and stitch the right DERO tx + DVM docs pages as citations.
Inferred read-onlyaudit_chain_artifact_claimComposite: audit a chain artifact (block topoheight, block hash, TX hash, and/or proof string) end-to-end.
Inferred read-onlydero_forge_demo_proofComposite: build a fresh `deroproof…` display object for ANY chosen transaction, ring slot, and amount — including negative amounts that uint64-wrap into the trillions.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.dero-daemon-mcp]
url = "https://mcp.derod.org/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"dero-daemon-mcp": {
"type": "http",
"url": "https://mcp.derod.org/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: dero-daemon-mcp
Remote MCP URL: https://mcp.derod.org/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"dero-daemon-mcp": {
"url": "https://mcp.derod.org/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"dero-daemon-mcp": {
"type": "http",
"url": "https://mcp.derod.org/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "dero-daemon-mcp",
"transport": "streamable-http",
"url": "https://mcp.derod.org/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for derod.org was fetched 2026-07-26T07:49:25.013Z and is being refreshed.
derod.org is assessed as RestrictedContent: Domain runs gambling-related technology.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.