INDIVIDUAL MCP TOOL
verify_supply
Composite: 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.
LIVE ENDPOINT
https://mcp.derod.org/mcp
Connect to this endpoint to inspect the live schema for verify_supply and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT 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.
Related tools
dero_daemon_ping— DERO daemon connectivity check via DERO.Ping.dero_daemon_echo— Echo strings through the daemon via DERO.Echo.dero_get_info— Get DERO daemon and chain metadata: height, topoheight, stableheight, difficulty, version, network, mempool size, and total supply (DERO.GetInfo).dero_get_height— Get the current block heights: tip height, stable height (finalized), and topoheight (canonical ordering) via DERO.GetHeight.dero_get_block_count— Get the total block count via DERO.GetBlockCount.dero_get_last_block_header— Get the header of the current tip block via DERO.GetLastBlockHeader (no full block body).dero_get_block— Fetch a full block (header + miner_tx + transactions + topo position) by height OR hash via DERO.GetBlock.dero_get_block_header_by_topo_height— Get a block header by topological height (canonical ordering) via DERO.GetBlockHeaderByTopoHeight.