Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

On-chain identity and durable memory for AI agents on the Emercoin blockchain (NVS).

README.md

![](https://github.com/emercoin/emer-ai-tools/blob/main/docs/docker.png) ![smithery badge](https://smithery.ai/servers/mechnotech/emer-ai) ![License: MIT](LICENSE)

Emercoin + AI agent tools (emer-ai-tools)

A runnable Docker stack: an Emercoin node plus an agent gateway that turns the chain's Name-Value Storage (NVS) into an on-chain identity & memory layer for AI agents. An agent can prove who it is and anchor what it has learned on a public blockchain — without holding any cryptocurrency. Hosted at ai.emercoin.com; exposed to agents as the emercoin-agent MCP server.

🤖 Building with an AI agent? Read AGENTS.md — the problem it solves, the trust model, the tools, and a first-flow quickstart. A ready-to-use Claude Code skill ships at .claude/skills/emercoin-identity/ (invoke with /emercoin-identity). Design notes: docs/ARCHITECTURE.md.

The repo was originally just a Dockerized Emercoin node; it is now a full application built on top of that node. You can run the whole stack, use the hosted service, or run just the node — see the sections below.

What's in here

 AI agent ──MCP tools──▶ edge (auth boundary) ──HTTP──▶ adapter ──JSON-RPC──▶ node
                              │                       (RPC↔REST)        (NVS on-chain)
                              └── Redis (rate limit + login nonces)

| Component | Path | Role | |-----------|------|------| | node (emc) | node/ | Emercoin core — holds the chain + hot-wallet; internal-only, authorizes nothing. | | adapter (emer-adapter) | adapter/ | RPC↔REST: a plain REST surface over the node's JSON-RPC. Internal, gated by X-Internal-Key. | | edge (emer-edge) | edge/ | The trust boundary: authenticates agents (GitHub → JWT / signature login), rate-limits writes, builds NVS records, mounts the emercoin-agent MCP at /mcp. | | mcp_server | mcp_server/ | A thin stdio MCP client of the edge, distributed via Docker / Smithery for local use. | | site | site/ | The public ai.emercoin.com front-end (landing, login, stats). |

Use it as an agent (hosted)

The emercoin-agent MCP server is live — no self-hosting needed:

  • Streamable HTTP: https://ai.emercoin.com/mcp (read tools open; write tools need

a GitHub sign-in via OAuth, performed by your MCP client).

and mcp_server/README.md.

Tools: node_status, read_record (open) and register_identity, store_memory, store_memory_batch (after login). Full reference + first-flow in AGENTS.md.

Run the full stack (self-host)

Node (mainnet) + adapter + edge + redis, dev profile: ``bash git clone https://github.com/emercoin/emer-ai-tools && cd emer-ai-tools cp node/emercoin.conf.example node/emercoin.conf # set rpcpassword docker compose -f deploy/docker-compose.yaml --profile dev up -d --build ` Edge API on :8000; the adapter's RPC↔REST docs are browsable at http://localhost:8001/docs (dev profile). Wire the MCP server into your agent and run the first flow — see the AGENTS.md quickstart. (Use --profile prod to gate the adapter behind a shared X-Internal-Key`.)

Run just the Emercoin node

The node alone (no agent tools) is the default stack — no profile needed. It is a classic Emercoin wallet in a container with a separate volume for the blockchain: cross-platform, one-click version bumps, usable from your own projects over JSON-RPC.

cp node/emercoin.conf.example node/emercoin.conf
docker compose -f deploy/docker-compose.yaml up -d --build

Initial sync takes a few hours, but the RPC is usable right away. By default port 6662 connects to the container:

  • address: 127.0.0.1 · user: emcrpc · password: emcpass
  • method: POST, e.g. body {"method": "getinfo"}

Change the RPC password: ``bash docker compose -f deploy/docker-compose.yaml exec emc bash changepass.sh docker compose -f deploy/docker-compose.yaml restart emc ``

Health check — POST to http://emcrpc:emcpass@127.0.0.1:6662 with {"method":"getinfo"}: ``bash curl --location --request POST 'emcrpc:emcpass@127.0.0.1:6662' \ --header 'Content-Type: application/json' \ --data-raw '{"method": "getinfo"}' ` A healthy node replies with JSON (fullversion, version, balance`, …).

Manage the build: ``bash docker compose -f deploy/docker-compose.yaml stop emc # stop docker compose -f deploy/docker-compose.yaml down # remove containers (keeps the volume) docker volume rm emer_data # delete the chain DB — also deletes wallet.dat! ``

Status

MVP, verified end-to-end on mainnet: identity registration, signature login, single + atomic batch memory writes, reads, history, names-by-address. Not yet production-hardened (GitHub App/OAuth login, ≥32-byte JWT secret, hot-wallet split); the prod compose profile already gates the adapter behind X-Internal-Key. Details in AGENTS.md and docs/ARCHITECTURE.md.

License

MIT — see LICENSE.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.