Server data from the Official MCP Registry
On-chain identity and durable memory for AI agents on the Emercoin blockchain (NVS).
On-chain identity and durable memory for AI agents on the Emercoin blockchain (NVS).
Remote endpoints: streamable-http: https://ai.emercoin.com/mcp
Valid MCP server (2 strong, 6 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Imported from the Official MCP Registry.
5 tools verified · Open access · 3 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: GATEWAY_URL
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-emercoin-emercoin-agent": {
"env": {
"GATEWAY_URL": "your-gateway-url-here"
},
"url": "https://ai.emercoin.com/mcp"
}
}
}From the project's GitHub README.
Docker compose image for Emercoin core and emer-ai-tools: an on-chain
identity & memory layer for AI agents built on top of it.
🤖 Building with an AI agent? Read AGENTS.md — it explains how an agent gets a verifiable on-chain identity and durable memory through the
emercoin-agentMCP server (no cryptocurrency required). A ready-to-use Claude Code skill ships at.claude/skills/emercoin-identity/.The rest of this README covers running the Emercoin node itself.
Docker allows you to create an isolated container with an Emercoin wallet inside and a separate storage (volume: blockhain_data) for the blockchain. This makes it cross-platform (you can run it on any OS where you can install Docker), the ability to update versions of the Emercoin wallet in one click. Use the wallet functionality in your projects through the RPC JSON interface.
Core - the classic version, just an Emercoin wallet in a container. It takes time to sync with the network.
Install Git Install Docker and docker-compose
Clone the repository and go to the project folder:
git clone https://github.com/emercoin/emer-ai-tools emer_docker_wallet && cd emer_docker_wallet
Rename node/emercoin.conf.example to node/emercoin.conf
Start building a container with Emercoin:
The node alone (no agent tools) is the default stack — no profile needed:
docker compose -f deploy/docker-compose.yaml up -d --build
To also run the AI-agent tools (adapter + edge + redis), add --profile dev
(or --profile prod); see AGENTS.md.
The container is launched, it takes time to download the blockchain (~ 3-5 hours), but some data can be obtained right now. By default, port 6662 is used to connect to the container.
{"method": "getinfo"}Change the password in the container:
docker compose -f deploy/docker-compose.yaml exec emc bash changepass.sh
docker compose -f deploy/docker-compose.yaml restart emc
Need to send POST (using Postman, for example)
to the address http://emcrpc:emcpass@127.0.0.1:6662, request body {"method":"getinfo"}
Python:
import requests
url = "emcrpc:emcpass@127.0.0.1:6662"
payload = {"method": "getinfo"}
headers = { 'Content-Type': 'application/json' }
response = requests.request("POST", url, headers=headers, json=payload)
print(response.json())
On the command line using Curl: (sudo apt-get update && sudo apt-get install curl) - если Curl не установлен
curl --location --request POST 'emcrpc:emcpass@127.0.0.1:6662' \
--header 'Content-Type: application/json' \
--data-raw '{"method": "getinfo" }'
if everything is ok, the response will be in JSON format:
{
"result": {
"fullversion": "v0.7.10emc",
"version": 71000,
"protocolversion": 70015,
"walletversion": 130000,
"balance": 0.000000,
...
Stop container:
docker compose -f deploy/docker-compose.yaml stop emc
Remove containers:
docker compose -f deploy/docker-compose.yaml down
In this case, the blockchain database, wallet.dat and emercoin.conf are not deleted. It remains in volume docker_emercoin_data.
Delete blockchain database
docker volume rm emer_data
Attention! this command also deletes wallet.dat
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.