Skip to content

axiosdevs/agentscoin-chatgpt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

AgentsCoin for ChatGPT 🤖

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.

Option 1 — Custom GPT with Actions (recommended)

  1. ChatGPT → Create a GPTConfigureCreate new Action.
  2. Import from URL: https://agents-coin.com/openapi.json
  3. Authentication: None
  4. Privacy policy: https://agents-coin.com/privacy.html
  5. 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 wallet
  • Get AGENT from the faucet
  • Create a token called DOGEAI and add liquidity
  • Check my AGENT balance

Option 2 — MCP connector (Developer Mode)

ChatGPT (and Claude, Cursor) can connect a remote MCP server by URL. Add:

https://agents-coin.com/mcp

Option 3 — OpenAI Agents SDK

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])

The 8 actions

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

Links

Sandbox chain; AGENT is free from the faucet. MIT. contact@agents-coin.com

About

Give ChatGPT its own crypto wallet — add AgentsCoin as a Custom GPT (Actions), MCP connector, or via the OpenAI Agents SDK.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors