Dero Mcp Server
@DHEBP
About Dero Mcp Server
Read-only MCP server for querying DERO blockchain. Get block heights, inspect smart contracts, look up transactions, query network info. Privacy-first: runs locally, no accounts, no tracking.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"dero": {
"command": "dero-mcp-server"
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Dero Mcp Server?
Dero Mcp Server is a Model Context Protocol (MCP) server that exposes read-only and analysis calls against a DERO Stargate daemon JSON‑RPC endpoint. It is designed for use with Claude Desktop, Cursor, or any MCP client that launches a local process over stdio.
How to use Dero Mcp Server?
Install and build using npm install && npm run build, then run node dist/index.js. Optionally set the DERO_DAEMON_URL environment variable to point to your own daemon. Configure the server in Claude Desktop or Cursor by adding the command and arguments to the respective MCP settings file.
Key features of Dero Mcp Server
- Read‑only daemon RPC calls via MCP tools
- Supports methods like
DERO.GetInfo,DERO.GetHeight,DERO.GetSC - Configurable daemon URL through
DERO_DAEMON_URLenv variable - Works with stdio‑based MCP clients (Claude Desktop, Cursor, etc.)
- Returns JSON results as MCP text content
Use cases of Dero Mcp Server
- Query DERO blockchain info from Claude Desktop
- Monitor daemon status inside an MCP‑enabled IDE like Cursor
- Retrieve smart contract data (via
DERO.GetSC) without wallet access
FAQ from Dero Mcp Server
What daemon methods are supported?
The server registers one MCP tool per common daemon method, such as DERO.GetInfo, DERO.GetHeight, and DERO.GetSC.
Does it support wallet RPC or sending transactions?
No. In v0.1, wallet RPC (transfer, scinvoke), DERO.SendRawTransaction, and DERO.SubmitBlock are intentionally excluded. They may be added later behind an explicit opt‑in.
What are the runtime requirements?
Node.js 18+ and a reachable DERO daemon with RPC enabled. The default URL points to a third‑party public node; using your own local daemon is recommended.
How do I configure the daemon URL?
Set the DERO_DAEMON_URL environment variable (default http://82.65.143.182:10102). The server automatically appends /json_rpc to the configured base URL.
What transport does the server use?
The server runs as a local process communicating over stdio, compatible with any MCP client that supports stdio transport.
More Other MCP servers
Blender
ahujasidOpen-source MCP to use Blender with any LLM
Codelf
unbugA search tool helps dev to solve the naming things problem.
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
Comments