← derod.org

INDIVIDUAL MCP TOOL

dero_get_block

Fetch a full block (header + miner_tx + transactions + topo position) by height OR hash via DERO.GetBlock.

derod.orgnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.derod.org/mcp

No auth detected

Connect to this endpoint to inspect the live schema for dero_get_block and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent server

derod.org

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_header_by_topo_height — Get a block header by topological height (canonical ordering) via DERO.GetBlockHeaderByTopoHeight.
  • dero_get_block_header_by_hash — Get a block header by its 64-char hex hash via DERO.GetBlockHeaderByHash.