MCP server + agent skill · gno.land

Put your agent on gno.land

gnomcp connects gno.land to anything that speaks MCP. Once it's installed you talk to your agent in plain language, and it reads realms, checks accounts, deploys code, and sends transactions on testnet chains.

$ curl -fsSL https://raw.githubusercontent.com/gnoverse/gno-mcp/main/scripts/install.sh | sh

Pipes a script into your shell. Read it first ↗

Works with Claude CodeClaude DesktopCursorGemini CLICodexOpenCode
agent session · testnet
you Deploy a check-in board: anyone can check in, it records their address, and reading it back lists everyone so far. Then check in yourself.
agent Wrote the realm, unit tests pass locally. Funding a key and deploying to testnet.
gno_faucet_fundagent key funded gno_addpkg…/checkin · Signed by: agent gno_callCheckIn() · Signed by: agent gno_render"1 check-in: g1…"
agent Live. Source and render are on chain, and every call above was signed by the agent's own key, not yours.
you
25Tools
2Chains preconfigured
1Command to install
0Of your keys needed
What it is

One server, one skill

Everything on gno.land is readable Go-like source with transparent state, so an agent can read a realm the way it reads any codebase. What was missing was a safe way to let it act. gnomcp adds that part.

gnomcp

The MCP server

Live chain queries, writes, and an agent key of its own to sign with. It ships pointed at the public testnet and a local gnodev node, so there is nothing to configure, and any other gno.land chain is one profile away.

skills/gno

The gno skill

Teaches your agent where Gno differs from Go: interrealm semantics, the security taxonomy, Render() conventions, the stdlib surface. So it stops guessing from Go or Solidity habits.

What you can do

Talk to it in plain language

No tool names to memorize. Describe what you want, and the answers come back grounded in real chain queries, not guesses.

Explore a chain

built-in
Which chain is this, is the node live, and what realms exist under gno.land/r/gnoland? Show me what the blog renders.

Ask what realms exist, what they render, and what an account holds. Live reads work on any chain, right after install.

Build & deploy a realm

gno-build
Deploy a check-in board: anyone can check in, it records their address, and reading it back lists everyone so far. Then check in yourself.

The agent writes the realm, tests it locally, does a security pass, funds a key from the faucet, deploys, and calls it to prove it works.

Audit before you trust

gno-audit
Give me a formal security audit of gno.land/r/gnoland/wugnot before I deposit into it.

Read-only, and it works on mainnet too. Findings come back with quoted source and severity, plus an honest note on what it didn't check.

Debug a failed transaction

gno-debug
My transaction failed with insufficient_funds. What happened?

Classifies the error, reproduces it cheaply without broadcasting, applies the fix, and re-runs to prove it. It tells you which identity signed each attempt.

Sessions

Act as yourself, safely

Want writes under your own address? The agent proposes a scoped session and hands you a gnokey command to sign on your own machine. It never touches your keys. Once approved it writes as you, within the limits you set, and revoking takes one command.

01Agent proposes: scoped paths, spend limit, expiry
02You sign: one gnokey command, on your machine
03It writes as you: inside the scope, on dev/testnet only
04You revoke: anytime, one command
The surface

25 tools, grouped by what they touch

Chain reads

Render realms, evaluate expressions, read packages, inspect accounts and node status.

Work immediately

Indexer reads

List realms, deployment and transaction history, on-chain activity.

Indexer URL

Writes

Call functions, run code, deploy packages, sign the CLA. Every result names its signer.

Agent key or session

Connect & configure

Discover a chain from its gnoweb URL and add it as an in-session profile.

A gnoweb URL

Sessions & keys

Propose and revoke user sessions; generate, list, fund, and manage the agent's own keys.

Your signature for sessions
gno_rendergno_readgno_evalgno_packagesgno_accountgno_statusgno_connectgno_profile_addgno_listgno_historygno_activitygno_session_proposegno_session_revokegno_auth_statusgno_callgno_rungno_addpkggno_cla_infogno_cla_signgno_key_addressgno_key_listgno_key_generategno_key_deletegno_key_sendgno_faucet_fund

Full catalog with arguments and return shapes → docs/tools.md

Security model

Safe by architecture, not by promise

An agent with chain access is a sharp tool, so the guarantees are structural. They live in code paths, not in a policy document.

Your keys stay in gnokey

The agent signs with its own key. Acting as you goes through an authorization you sign yourself.

No signing on real-funds chains

The mainnet write path does not exist in the code. Mainnet and betanet stay read-only.

Chain output is data, not instructions

Everything read from the chain is wrapped as untrusted content, so a malicious realm can't steer the agent.

Bounded reads

Output is budgeted and summarized, never silently truncated.

Every write is logged

An append-only trail records the tool, the profile, the result, and which account signed.

Structured errors

Machine-routable codes and recovery hints, so the agent fails forward.

Pre-release

Work in progress, unaudited, and the tool API can still change. Writes only work on dev and testnet chains. Read docs/security.md and file issues when something looks off.

Get started

Install it, then just ask

One command installs the server binary and the agent skills. It verifies the checksum and wires up the clients it can.

01

Install

$ curl -fsSL https://raw.githubusercontent.com/gnoverse/gno-mcp/main/scripts/install.sh | sh

This pipes a script from the internet into your shell, so read it first. Claude Code, Gemini CLI, and Codex are wired automatically; OpenCode gets printed steps.

02

Restart your agent

So it loads gnomcp. You get two profiles out of the box: the public gno.land testnet and a local gnodev node.

03

Ask

New to gno.land? Ask your agent to teach you instead. It will walk you through a hands-on tour. Otherwise just describe what you want on chain.