INDIVIDUAL MCP TOOL
estimate_deploy_cost
Composite: 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.
LIVE ENDPOINT
https://mcp.derod.org/mcp
Connect to this endpoint to inspect the live schema for estimate_deploy_cost and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests sending messages.
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.