Emercoin Agent
Official
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 ( |
| Emercoin core — holds the chain + hot-wallet; internal-only, authorizes nothing. |
adapter ( |
| RPC↔REST: a plain REST surface over the node's JSON-RPC. Internal, gated by |
edge ( |
| The trust boundary: authenticates agents (GitHub → JWT / signature login), rate-limits writes, builds NVS records, mounts the |
mcp_server |
| A thin stdio MCP client of the edge, distributed via Docker / Smithery for local use. |
site |
| The public |
Related MCP server: solitaire-ai
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).Smithery / stdio Docker image: see the Smithery listing 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:
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 --buildEdge 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 --buildInitial 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:
docker compose -f deploy/docker-compose.yaml exec emc bash changepass.sh
docker compose -f deploy/docker-compose.yaml restart emcHealth check — POST to http://emcrpc:emcpass@127.0.0.1:6662 with {"method":"getinfo"}:
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:
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
prodcompose profile already gates the adapter behindX-Internal-Key. Details in AGENTS.md and docs/ARCHITECTURE.md.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceAI agent identity and reputation registry. Ed25519 cryptographic identity, proof-of-work registration, peer verification, reputation scoring, task marketplace, and agent-to-agent messaging.Last updated161,287Apache 2.0
- Alicense-qualityCmaintenanceIdentity infrastructure for AI agents. Gives agents an evolving persona, session continuity, and self-correcting retrieval so they stop being strangers. Local-first, model-agnostic.Last updated8AGPL 3.0
- Alicense-qualityBmaintenancePay-per-use semantic memory for AI agents with cryptographic attestation. Vector embeddings with SHA256 commitment, secp256k1 signature, and Lightning invoice.Last updatedApache 2.0
- Alicense-qualityBmaintenancePersistent memory and identity infrastructure for AI agents. Cross-session wake protocol, drift detection, immutable snapshots, and shared memory spaces — free hosted APILast updated9MIT
Related MCP Connectors
Shared, verifiable memory for AI agents and robots: signed tokens that resolve and verify offline.
TPermanent memory layer for AI agents. Mint moments to the Polygon blockchain via MCP.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/emercoin/emer-ai-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server