Skip to main content
ClaudeWave

Docker compose image for Emercoin core

MCP ServersOfficial Registry7 stars6 forksPythonUpdated today
Install in Claude Code / Claude Desktop
Method: UVX (Python) · emer-ai-tools
Claude Code CLI
claude mcp add emer-ai-tools -- uvx emer-ai-tools
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "emer-ai-tools": {
      "command": "uvx",
      "args": ["emer-ai-tools"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Package name inferred from the repository name. Verify it exists on PyPI, or clone https://github.com/emercoin/emer-ai-tools and follow its README.
Use cases

MCP Servers overview

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

# Emercoin + AI agent tools

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](AGENTS.md)** — it explains
> how an agent gets a verifiable on-chain identity and durable memory through the
> `emercoin-agent` MCP 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.

### Why is all this necessary?

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.

### To start from scratch:
 
Install [Git](https://github.com/git-guides/install-git)
Install [Docker](https://docs.docker.com/engine/install/) and [docker-compose](https://docs.docker.com/compose/install/#install-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](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.

- address: **127.0.0.1**
- user: **emcrpc**
- password: **emcpass**
- method: **POST** request body example `{"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
```

### How can I check that the container is working properly?
Need to send **POST** (using Postman, for example)
to the address `http://emcrpc:emcpass@127.0.0.1:6662`, request body `{"method":"getinfo"}`

**Python:**
```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 не установлен
```bash
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:
```JSON
{
    "result": {
        "fullversion": "v0.7.10emc",
        "version": 71000,
        "protocolversion": 70015,
        "walletversion": 130000,
        "balance": 0.000000,
        ...
```

### Build Management

**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**

What people ask about emer-ai-tools

What is emercoin/emer-ai-tools?

+

emercoin/emer-ai-tools is mcp servers for the Claude AI ecosystem. Docker compose image for Emercoin core It has 7 GitHub stars and was last updated today.

How do I install emer-ai-tools?

+

You can install emer-ai-tools by cloning the repository (https://github.com/emercoin/emer-ai-tools) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is emercoin/emer-ai-tools safe to use?

+

emercoin/emer-ai-tools has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains emercoin/emer-ai-tools?

+

emercoin/emer-ai-tools is maintained by emercoin. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to emer-ai-tools?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy emer-ai-tools to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: emercoin/emer-ai-tools
[![Featured on ClaudeWave](https://claudewave.com/api/badge/emercoin-emer-ai-tools)](https://claudewave.com/repo/emercoin-emer-ai-tools)
<a href="https://claudewave.com/repo/emercoin-emer-ai-tools"><img src="https://claudewave.com/api/badge/emercoin-emer-ai-tools" alt="Featured on ClaudeWave: emercoin/emer-ai-tools" width="320" height="64" /></a>

More MCP Servers

emer-ai-tools alternatives