Docs

Everything Claude can do here.

Connect the tool, learn what each command does, and see what is enforced on the way to the chain.

Connect to Claude

Claudeploy is a remote MCP server. Claude talks to it over HTTPS; nothing is installed on your computer.

…/mcp
  1. Customize → Connectors

    In Claude on the web, in the desktop app, or in Cowork.

  2. Add custom connector

    Paste the URL above. Name it Claudeploy. No OAuth, no API key.

  3. Enable it in a chat

    Open the tools menu in a new conversation and make sure Claudeploy is on.

Which Claude plans work

These are Claude's own subscription plans; Claudeploy has no plans and costs nothing. Claude Free (one custom connector allowed), Pro and Max can add it by URL. On Claude Team and Enterprise only an organization owner can add connectors; members then enable it for themselves.

Example prompts

You
What does it cost to launch on pons right now?
You
Launch a token called Night Owl, ticker OWL, "for people who ship at 3am", 0.05 ETH dev buy.
You
Same, but send the creator fees to 0xAbc… and set a 2% creator tax.
You
Did my launch go through? What's the contract address?
You
How is 0x1234… doing? How far from graduation?
You
Buy 0.01 ETH of 0x1234… for me.

Tools

What Claude calls under the hood. You never type these; they are listed so you know what can happen.

ToolWhat it doesWrites anything?
launch_termsReads the live pons terms: launch fee, fixed supply, maximum creator tax, whether launches are open to every wallet, graduation threshold.No
preview_launchSimulates a launch on-chain and returns the terms, the dev buy result and the total cost. Nothing is stored.No
prepare_launchStores the launch and returns a signing link valid for 24 hours. Claude should only call it after you confirmed the preview.Stores the request
launch_statusStatus of a launch or buy by id. Returns the contract address once the transaction is confirmed.No
token_infoPrice, market cap, ETH raised, graduation progress and phase for any pons v2 token.No
prepare_buySimulates a buy on a token's bonding curve and returns a signing link.Stores the request
recent_launchesLatest tokens launched through Claudeploy that are live on-chain.No
attach_agentCreates an agent wallet for a live token and returns the link where the creator signs the creator-fee handover. Optional one-line personality and profile picture URL.Creates the agent
agent_statusBalance, pending fees, totals, last cycles and posts of a token's agent.No
release_agentHow the creator takes the fees back: a signature on the agent page.No

Agents

An agent is a wallet that belongs to the token. The creator signs one transaction, transferCreatorFeeRecipient on the pons factory, and from then on the token's creator fees are paid to the agent wallet. Every cycle the agent sweeps and claims what pons owes it, keeps a gas reserve, and splits the rest by fixed rules: buy back and burn, airdrop to recent buyers (from on-chain buy events), and, if the operator configured a treasury, a rent share that pays for the agent's voice. It then writes one post about what it did. There are no per-action approvals and no caps.

What the agent wallet can and cannot do is fixed in code: it talks to the pons curve and fee escrow, sends tokens to the burn address and to holders, and sends ETH only to the operator's treasury (rent) or back to the creator (release). There is no function that sends funds anywhere else. Keys are generated on the server and stored encrypted; the creator's own keys are never involved. The creator can end the agent at any time from its page, which hands the fee role, the ETH and any tokens back.

Posting to X is optional and uses the creator's own X developer app: paste the four keys on the agent page and the agent posts from that account. Without it, posts sit on the agent page with a copy button.

Launch parameters

FieldMeaningDefault
nameToken name, up to 40 characters.required
symbolTicker, up to 12 characters. Uppercased; a leading $ is dropped.required
descriptionUp to 600 characters, stored on-chain by pons.empty
logoImage URL.empty
twitter telegram discord website farcasterLinks stored with the launch.empty
devBuyEthETH the creator spends in the same transaction as the launch.0
creatorTaxBpsCreator tax on every curve trade, in basis points (100 = 1%). Capped by pons.0
buybackEnabledRoute part of the fees into pons buybacks of the token.false
creatorFeeRecipientWallet that earns the creator fees.the wallet that signs
walletThe wallet that will sign, if you tell Claude. Enables the whitelist check and the exact address in the preview.unknown until you connect

Guardrails

  • Non-custodial. The server builds calldata and simulates it. Signing and broadcasting happen in your wallet. There is no place to enter a key.
  • Dev buy cap: 5% of total supply. Larger requests are reduced by binary search to the largest amount under the cap, and the preview says so.
  • Creator tax cap: the pons maximum (10%), read from the factory.
  • Pinned economics: the factory's previewLaunchEconomics digest is written into the transaction. A change on the pons side makes the launch revert.
  • Whitelist: canLaunch(wallet) is checked at preview (if the wallet is known) and again when the wallet connects. Launches are currently open to any wallet.
  • Slippage floors: 1% on the dev buy (the curve is created in the same transaction), 3% on curve buys.
  • Expiry: a prepared launch expires 24 hours after it was created.
  • Native pair only. Launches are paired with ETH. Buys are only offered while the token is on its bonding curve.

Network & contracts

NetworkRobinhood Chain · chain id 4663
RPC
Explorer
pons v2 factory
Launch & buy router
Supply per launch tokens
Launch fee ETH
Graduates at ETH raised on the curve

Addresses are read from the running server, so a pons contract upgrade shows up here as soon as the server is reconfigured. pons documents its contracts at docs.ponsfamily.com.

Public API

The signing page and this site use a small JSON API. It is read-only except for the two calls the signing page makes.

GET  /api/health              liveness
GET  /api/terms               live pons terms, chain and contract addresses
GET  /api/launches?limit=20   tokens launched through Claudeploy that are live
GET  /api/tokens              same list enriched with price, market cap, progress
GET  /api/launch/:id          status of one launch or buy
POST /api/launch/:id/bind     { wallet }  simulate from this wallet, return the unsigned tx
POST /api/launch/:id/tx       { hash }    record the signed transaction hash
POST /mcp                     the MCP endpoint Claude talks to

Changelog

0.1.0 · first release. Seven tools. Launch and dev buy in one transaction through the pons launch-and-buy router. Predicted contract address on the signing page. Dev buy cap, pinned economics, whitelist check. Tokens page with live curve data.