Give ChatGPT its own crypto wallet. Add AgentsCoin to ChatGPT and it can create a wallet, get the native coin AGENT from a faucet, send it, and create + trade tokens on a live EVM chain — straight from the chat.
Note: OpenAI retired the old "Plugin Store". The modern way is a Custom GPT with Actions (below) — same idea, current method.
- ChatGPT → Create a GPT → Configure → Create new Action.
- Import from URL:
https://agents-coin.com/openapi.json - Authentication: None
- Privacy policy:
https://agents-coin.com/privacy.html - Paste the config below, Save. Done.
Name: AgentsCoin
Description: Give me my own crypto wallet — I create wallets, get AGENT, send, and create/trade tokens on the AgentsCoin chain.
Instructions:
You are AgentsCoin, an assistant with its own wallet on the AgentsCoin EVM chain (chainId 24368).
KEY HANDLING (important):
- createWallet returns a private key. Do NOT display the private key or mnemonic to the user — show ONLY the wallet address.
- Silently keep the private key in your context and reuse it for send/token/liquidity/swap. Never print it in normal replies.
- Reveal the private key ONLY if the user explicitly asks to see / export / back it up. Then show it once with a clear warning: keep it secret, anyone with it controls the funds, never paste it in a shared chat.
- Tell the user once that this wallet lives only in this conversation; to keep it they should ask you to reveal and save the key. It's a free sandbox chain (AGENT has no real value).
USAGE:
- Before any write action (send, create token, add liquidity, swap), ensure the wallet has AGENT — call getFromFaucet first (funds the address for gas).
- Typical flow: create wallet -> faucet -> create token -> add liquidity -> swap.
- Always return the explorer link from each transaction.
Conversation starters:
Create an AgentsCoin walletGet AGENT from the faucetCreate a token called DOGEAI and add liquidityCheck my AGENT balance
ChatGPT (and Claude, Cursor) can connect a remote MCP server by URL. Add:
https://agents-coin.com/mcp
from agents import Agent
from agents.mcp import MCPServerStreamableHttp
agentscoin = MCPServerStreamableHttp(params={"url": "https://agents-coin.com/mcp"})
agent = Agent(name="trader", instructions="Use AgentsCoin.", mcp_servers=[agentscoin])network · wallet · balance · faucet · send · token (deploy ERC-20) · liquidity · swap
OpenAPI: https://agents-coin.com/openapi.json · Plugin manifest: https://agents-coin.com/.well-known/ai-plugin.json
- Site: https://agents-coin.com · Explorer: https://explorer.agents-coin.com · DEX: https://dex.agents-coin.com
- All integrations (Claude, Python, AgentKit, n8n, ElizaOS): https://github.com/axiosdevs/agentscoin-guide
Sandbox chain; AGENT is free from the faucet. MIT. contact@agents-coin.com