Agentscoin Mcp

by axiosdevs

338 downloads
Not rated
GitHub

About

Give your AI agent its own money on AgentsCoin — create a wallet,

Details

Author
axiosdevs
Downloads
338
Categories
Other

- agentscoin_network_info: returns chain ID, RPC, and explorer details.
- agentscoin_create_wallet: generates a new wallet address and private key.
- agentscoin_balance: checks the $AGENT balance of any address.
- agentscoin_mine: mines $AGENT via the browser-based proof-of-work faucet headlessly.
- agentscoin_send: sends $AGENT to another address.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Agentscoin Mcp
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, run npm install and npx playwright install chromium (required only for the mine tool). Then add a configuration entry to your .mcp.json or ~/.claude.json with the command node and the absolute path to index.js. Restart your agent—the five tools appear automatically.

agentscoin_network_info

Get AgentsCoin network parameters (chainId, RPC, symbol, explorer). Use to add the network to MetaMask or any EVM wallet.

agentscoin_create_wallet

Create a new AgentsCoin wallet for the agent. IMPORTANT: the private key is saved locally and kept hidden — do NOT display it. Show ONLY the address. The key is used automatically for send/create/swap. Reveal it only via agentscoin_reveal_private_key when the user explicitly asks.

agentscoin_reveal_private_key

Reveal and back up the saved private key + mnemonic. ONLY call this when the user EXPLICITLY asks to see / export / back up their key. Then warn them to keep it secret.

agentscoin_balance

Check the AGENT balance of an address (defaults to your saved wallet).

agentscoin_send

Send AGENT from your wallet to another address.

agentscoin_mine

Get AGENT from the faucet (defaults to your saved wallet). Works instantly in chat, no browser. Use to fund a fresh wallet for gas.

agentscoin_create_coin

Deploy a new token (ERC-20) on AgentsCoin. Returns the token address.

agentscoin_add_liquidity

Create or add an AGENT liquidity pool for a token on the AgentsCoin DEX.

agentscoin_swap

Buy or sell a token for AGENT on the AgentsCoin DEX.

agentscoin_price

Get a live crypto price (premium data API). Costs 0.1 AGENT per call, paid automatically from your saved wallet.

agentscoin_register_name

Register a .agent name pointing to an address (costs 1 AGENT). Name: lowercase a-z 0-9 and -, 3-32 chars.

agentscoin_resolve_name

Resolve a .agent name to its address (free, read-only).

agentscoin_pay

Pay AGENT to another agent by its .agent name (or a 0x address). Resolves the name, then sends. This is how agents pay each other.

agentscoin_weather

Get current weather for a city (premium data, Open-Meteo). Costs 0.1 AGENT.

agentscoin_news

Get top tech/startup news (premium data, Hacker News). Costs 0.1 AGENT.

agentscoin_token_info

Look up a crypto token price/liquidity (premium data, DexScreener). Costs 0.1 AGENT.

agentscoin_gas

Get current gas price on Ethereum mainnet + AgentsCoin (premium data). Costs 0.1 AGENT.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "agentscoin mcp": {
            "agentscoin": {
                "command": "npx",
                "args": [
                    "-y",
                    "agentscoin-mcp"
                ]
            }
        }
    }
}

McpServers

{
    "agentscoin": {
        "command": "npx",
        "args": [
            "-y",
            "agentscoin-mcp"
        ]
    }
}

AgentsCoin MCP 🦞

Give your AI agent its own money.

This is the official MCP server for AgentsCoin — an EVM blockchain where AI agents mine the native coin $AGENT themselves: no stake, no captcha, no human signup.

Add it to Claude Code, Cursor, or OpenClaw, and your agent can create a wallet, mine $AGENT, and spend it — autonomously, with one config.

---

What is AgentsCoin?

AgentsCoin is a public, EVM-compatible Layer-1 blockchain built for AI agents.

- ⛏️ Agents mine the coin themselves — in the browser via Proof-of-Work. No stake, no captcha, no human.
- ⛽ Gas is paid in $AGENT — near-free, forever. No ETH required.
- 🎁 80% of total supply is distributed to agents through the faucet.
- 🦊 It's a normal EVM chain — works with MetaMask and every EVM tool.

| | |
|---|---|
| Network | AgentsCoin |
| Chain ID | 24368 |
| RPC | https://rpc.agents-coin.com |
| Symbol | AGENT (18 decimals) |
| Explorer | https://explorer.agents-coin.com |
| Faucet | https://faucet.agents-coin.com |

---

What is this MCP?

MCP (Model Context Protocol) is the open standard that lets AI agents use external tools. This server gives your agent 5 tools to use AgentsCoin.

| Tool | What it does |
|------|--------------|
| agentscoin_network_info | Returns chain params (to add the network to a wallet) |
| agentscoin_create_wallet | Creates a new wallet (address + private key) |
| agentscoin_balance | Checks an address' $AGENT balance |
| agentscoin_mine | Mines $AGENT via the browser PoW faucet (headless) |
| agentscoin_send | Sends $AGENT to another address |

---

What happens when you give this to your agent

1. Your agent gets a wallet. It calls agentscoin_create_wallet → a fresh address + private key. No signup, no human needed.
2. It mines $AGENT. It calls agentscoin_mine → a headless browser runs the proof-of-work faucet (~1–2 min) and claims the reward to the wallet.
3. It uses the coin. agentscoin_balance to check, agentscoin_send to pay anyone. Gas is paid in $AGENT — near-free.

In short: you paste one config, and your agent earns and spends its own on-chain money — autonomously. It costs you nothing.

---

Install

git clone https://github.com/axiosdevs/agentscoin-mcp
cd agentscoin-mcp
npm install
npx playwright install chromium   # only needed for the mine tool

Configure (Claude Code / Cursor)

Add to your .mcp.json (or ~/.claude.json):

{
  "mcpServers": {
    "agentscoin": {
      "command": "node",
      "args": ["/absolute/path/to/agentscoin-mcp/index.js"]
    }
  }
}

Restart your agent — the 5 tools appear.

Typical flow

create_wallet  →  mine  →  balance  →  send

---

Is it safe?

- The wallet your agent creates is its own. The private key is generated locally and handed to your agent; it's never sent anywhere except as signed transactions to the public RPC.
- Mining runs in a local headless browser on your machine.
- Gas is paid in $AGENT (which your agent mines), so it never costs you real money.
- The code is one small, readable file (index.js) — open-source, MIT licensed.

Configuration (optional env vars)

| Env | Default |
|-----|---------|
| AGENTSCOIN_RPC | https://rpc.agents-coin.com |
| AGENTSCOIN_FAUCET | https://faucet.agents-coin.com |
| AGENTSCOIN_EXPLORER | https://explorer.agents-coin.com |

---

Links

- 🌐 Website: https://agents-coin.com
- ⛏️ Faucet: https://faucet.agents-coin.com
- 🔍 Explorer: https://explorer.agents-coin.com

MIT licensed. Built for the machine economy. 🦞

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.