evernode-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@evernode-mcpGenerate an escrow dApp template"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
evernode-mcp — Evernode AI Builder
An MCP server that helps an AI agent build, check, cost, and deploy HotPocket dApps on Evernode / Xahau. Point any MCP-capable agent at it and ask for a dApp — it scaffolds a deterministic contract, checks it won't break cluster consensus, estimates the EVR lease, ranks hosts, and generates the deploy commands.
It is advisory and read-only: it generates files + guidance, never holds keys, never spends EVR, and connects to the Offledger Cluster Manager rather than replacing it.
Where it fits
The Hooks trifecta secures layer-1 Hooks: write (xahc) → simulate (xahau-mcp) → prove (xahc-prover). evernode-mcp is the layer-2 companion: it builds the HotPocket dApps that run on Evernode hosts, and hands off to the trifecta whenever a dApp settles value on Xahau through a Hook-guarded account.
Related MCP server: Agoric Dev MCP Server
Tools
tool | does |
| the available dApp templates |
| scaffold a deterministic HotPocket dApp (escrow · subscription · game_backend · voting · token_gated · payment_splitter · blank) |
| the differentiator — scan a contract for non-deterministic code (wall-clock, randomness, network, env, timers) that breaks consensus |
| which HotPocket pattern fits a use-case (node count, NPL/oracle, Xahau settlement) |
| when a dApp settles via a Xahau Hook, the exact write→simulate→prove handoff to the trifecta |
| tenant EVR lease = evrPerMoment × moments × nodes (honest about host-set rates) |
| fetch + rank live hosts from OnLedger (api.onledger.net, real-time from the Xahau registry) by cheap/capacity/reputation, with filters (min rep/slots/RAM, country) — or rank a list you supply. Real data only |
| command sequences for local · single · cluster · Cluster-Manager deploys |
| map a HotPocket/Evernode error to cause + fix |
Why the determinism check matters
HotPocket runs your contract on every node of the cluster and consensuses the output. If two
nodes compute different results — because you called Date.now(), Math.random(), fetch(),
or read process.env — consensus breaks and the ledger stalls. It's the #1 HotPocket
mistake. check_determinism flags these before you deploy; every shipped template is checked
clean by the heuristic scanner (no HIGH findings). Time is the consensus ledger seq
(ctx.lclSeqNo); external data must enter as a consensused input or via an oracle/NPL agreement.
It is a heuristic linter, not a prover — a regex source scan that catches the common
consensus-breakers (wall-clock incl. process.hrtime[.bigint], randomness incl.
crypto.randomInt/randomFill, network I/O, process.env/os.*, timers, for..in, and
unsorted Object.keys/values/entries + Map/Set iteration). It does not prove determinism
and has known out-of-scope classes:
Floating-point — no flagging of float math whose rounding/NaN/
-0behavior could differ.Locale / timezone —
toLocaleString,Intl.*,Dateformatting, locale-sensitivelocaleCompareare not flagged.Iteration order it can't see — order divergence behind aliases (
const ks = Object.keys(o); …used elsewhere), spreads ([...map]),Array.from(set),.forEachover a Map/Set, orJSON.stringifyof an object built in a non-consensused order. Sorted iteration (Object.keys(o).sort(),Object.entries(o).sort(...)) is recognized and not flagged.
So: it catches the breakers beginners hit, not all of them. Settlement safety is proven
separately by the trifecta (xahc-prover).
Quickstart
npm install && npm run build
npm run smoke # self-test (templates are determinism-clean, checker works)
node dist/index.js # run as an MCP server on stdioAdd to an MCP client (e.g. Claude) as a stdio server pointing at dist/index.js.
Honest scope
Generates code + guidance; does not acquire leases, sign, or move EVR/XAH.
recommend_hostsfetches live from OnLedger (or ranks a list you supply) — it never fabricates host addresses/specs; honest on fetch failure.check_determinismis a heuristic source scan — guidance, not a proof; test on a real multi-node cluster before mainnet.Settlement safety (Hook spend limits) is delegated to the trifecta, which proves it.
MIT License — © 2026 Dane Brown. Open source; see LICENSE. Not affiliated with Evernode Labs or the Xahau project.
This server cannot be installed
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hugegreencandle/evernode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server