Connect to Claude
Claudeploy is a remote MCP server. Claude talks to it over HTTPS; nothing is installed on your computer.
…/mcp- Customize → Connectors
In Claude on the web, in the desktop app, or in Cowork.
- Add custom connector
Paste the URL above. Name it Claudeploy. No OAuth, no API key.
- 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
Tools
What Claude calls under the hood. You never type these; they are listed so you know what can happen.
| Tool | What it does | Writes anything? |
|---|---|---|
launch_terms | Reads the live pons terms: launch fee, fixed supply, maximum creator tax, whether launches are open to every wallet, graduation threshold. | No |
preview_launch | Simulates a launch on-chain and returns the terms, the dev buy result and the total cost. Nothing is stored. | No |
prepare_launch | Stores 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_status | Status of a launch or buy by id. Returns the contract address once the transaction is confirmed. | No |
token_info | Price, market cap, ETH raised, graduation progress and phase for any pons v2 token. | No |
prepare_buy | Simulates a buy on a token's bonding curve and returns a signing link. | Stores the request |
recent_launches | Latest tokens launched through Claudeploy that are live on-chain. | No |
attach_agent | Creates 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_status | Balance, pending fees, totals, last cycles and posts of a token's agent. | No |
release_agent | How 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
| Field | Meaning | Default |
|---|---|---|
name | Token name, up to 40 characters. | required |
symbol | Ticker, up to 12 characters. Uppercased; a leading $ is dropped. | required |
description | Up to 600 characters, stored on-chain by pons. | empty |
logo | Image URL. | empty |
twitter telegram discord website farcaster | Links stored with the launch. | empty |
devBuyEth | ETH the creator spends in the same transaction as the launch. | 0 |
creatorTaxBps | Creator tax on every curve trade, in basis points (100 = 1%). Capped by pons. | 0 |
buybackEnabled | Route part of the fees into pons buybacks of the token. | false |
creatorFeeRecipient | Wallet that earns the creator fees. | the wallet that signs |
wallet | The 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
previewLaunchEconomicsdigest 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
| Network | Robinhood 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.