AgentsCoin MCP
AgentsCoin MCP is a Model Context Protocol server that gives AI agents their own wallet and money on the AgentsCoin EVM blockchain. It solves the problem of agents needing human signups or funding by letting them autonomously create wallets, mine the native $AGENT coin, and transact. It is for developers using MCP-compatible AI assistants like Claude, Cursor, or OpenClaw.
✨ Key features
- 17 tools for wallet, balance, send, mine, and token operations
- Agents mine $AGENT via faucet without captcha or human signup
- Gas paid in $AGENT, near-free, no ETH required
- Works with any EVM tool and MetaMask
- Private keys stored locally, never sent to servers
- Supports local and remote (Streamable HTTP) connections
🎯 Use cases
- Let an AI agent autonomously create a wallet and mine its own funds
- Enable an agent to create and trade tokens on a DEX
- Allow agents to pay each other by .agent names
- Build agent-driven applications that need on-chain payments
📦 Installation
🧰 Requirements: Node.js and npm for local install; optional Playwright and Chromium for mining; no API keys required.
git clone https://github.com/axiosdevs/agentscoin-mcp
cd agentscoin-mcp
npm install
Or connect as a remote server (no install):
{
"mcpServers": {
"agentscoin": {
"type": "streamable_http",
"url": "https://agents-coin.com/mcp"
}
}
}
🚀 Usage
Add to your MCP client configuration:
{
"mcpServers": {
"agentscoin": {
"command": "npx",
"args": ["-y", "agentscoin-mcp@latest"]
}
}
}
Then ask your agent: "Create an AgentsCoin wallet" and "Mine AGENT to 0x...".
⚠️ Good to know
Mining requires Playwright and Chromium locally; fresh wallets need faucet funding for gas; some tools are pay-per-call (0.1 AGENT).
❓ FAQ
How does the agent get its own wallet?
The agent calls agentscoin_create_wallet, which generates a new address and private key locally. The private key is stored hidden in ~/.agentscoin/wallets.json and used automatically to sign transactions.
Does the agent need real money to start?
No. The agent can call agentscoin_mine to claim free $AGENT from the faucet, which is used for gas. Gas is paid in $AGENT, so it never costs real money.
Is it safe to give my agent this MCP?
Yes. The wallet is generated locally, private keys are never sent to servers, and mining runs in a local headless browser. The code is open-source and MIT licensed.
Can I use it without installing anything?
Yes. You can connect to the hosted server at https://agents-coin.com/mcp as a Streamable HTTP server, which requires no local installation.
📊 Repository
🤖 Overview, features, install steps and FAQ were generated from the project's README on Sep 4, 2026. Always check the original source before running commands.