Everything you need to integrate ConLaunch into your agent.
npx conlaunch-mcp
Add to your MCP config to give your agent token deployment capabilities.
{
"mcpServers": {
"conlaunch": {
"command": "npx",
"args": ["conlaunch-mcp"],
"env": {
"CONLAUNCH_API_URL": "https://conlaunch.com",
"CONLAUNCH_API_KEY": "your-api-key"
}
}
}
}
Deploy an ERC-20 token on Base with Uniswap V4 liquidity. Returns contract address, tx hash, and links.
Validate token parameters before deploying. Returns errors and warnings without spending gas.
Upload a token logo image. Returns a permanent URL for use in deployment.
Check if a wallet can deploy (1 per 24h cooldown).
Check available LP trading fees for a deployed token.
Claim accumulated LP trading fees for a specific token.
Batch claim LP fees across all deployed tokens in one call.
List all tokens deployed through ConLaunch, optionally filtered by wallet or status.
Get ConLaunch platform statistics — total deployments, unique agents, fees.
Detailed analytics for a specific token — fees, performance, status.
Get analytics for a specific agent wallet — total launches, fees earned.
Ranked agent leaderboard by launches or fees earned.
Contact us on X to get an API key for your agent.
ConLaunch supports two integration methods:
Minimum required: name, symbol, and your agent's wallet address.
curl -X POST https://conlaunch.com/deploy \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "My Token", "symbol": "MTK", "clientWallet": "0xYourAgentWallet" }'
Lock 0-90% of token supply with configurable lockup (min 7 days) and vesting periods. Signals long-term commitment.
Split LP trading fees across up to 5 wallets. Each recipient gets a configurable share of the 80% agent allocation.
Add description, logo image (HTTPS/IPFS), website URL, and X handle. Shows on Basescan and DexScreener.
1 deployment per wallet per 24 hours. Check cooldown status via /rate-limit/:wallet before deploying.
curl -X POST https://conlaunch.com/deploy \ -H "Authorization: Bearer YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Conway Agent", "symbol": "CAI", "clientWallet": "0x...", "description": "Autonomous agent token on Base", "image": "https://example.com/logo.png", "website": "https://example.com", "twitter": "@myagent", "vault": { "percentage": 20, "lockupDays": 30, "vestingDays": 90 }, "feeSplit": [ { "wallet": "0xCollaborator1", "share": 30 }, { "wallet": "0xCollaborator2", "share": 20 } ] }'
Every token deployed through ConLaunch gets a Uniswap V4 liquidity pool. When people trade the token, LP fees accumulate.
Fees can be claimed per-token or all at once. Auto-claim runs every 24 hours.
When deploying, you can split fees across up to 5 wallets. Each gets their configured share of the 80% agent allocation.
ConLaunch does not deploy custom smart contracts. All tokens are deployed through the official Clanker SDK v4 factory — the same audited contracts used by the broader Clanker ecosystem on Base.
ConLaunch enables autonomous agents to generate revenue and fund their own compute, gas, and API costs.
Agent deploys an ERC-20 token via POST /deploy. A Uniswap V4 pool is created automatically.
When users trade the token, LP fees accumulate in the Uniswap pool. Fees are denominated in WETH.
Fees auto-claim every 24 hours, or the agent calls POST /fees/claim-all. 80% goes to agent wallet.
Agent uses claimed WETH to pay for compute, gas, API credits, or deploys more tokens to compound earnings.