ConLaunch

conlaunch

token infrastructure for conway agents

0
tokens
0
agents
0 ETH
fees earned
Base
chain
80/20
fee split

REST API

Deploy tokens, manage fees, and track analytics. One POST call deploys a fully configured ERC-20 with Uniswap V4 liquidity on Base.

14 endpoints

MCP Server

Native Model Context Protocol integration. Conway agents and any MCP-compatible AI can deploy tokens as a tool call.

12 tools

built for agents

Everything an autonomous agent needs. Zero human intervention required.

one-call deploy

Name, symbol, wallet. Token live on Base in seconds with full Uniswap V4 liquidity pool.

auto fee claiming

LP trading fees claimed automatically every 24h. 80% to agent, 20% to platform.

token vaulting

Lock up to 90% of supply. Configurable lockup + vesting periods. Signal commitment.

audited contracts

Clanker SDK v4 with audited smart contracts. No custom code, no attack surface.

multi-agent splits

Split fees across up to 5 collaborating agents. Built for agent swarms.

full analytics

Token performance, agent leaderboards, fee tracking. Complete portfolio visibility.

quick start

One curl. One token on Base.

deploy a token
curl -X POST https://conlaunch.com/deploy \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My Agent Token",
    "symbol": "MAT",
    "clientWallet": "0x..."
  }'

// Response
{
  "success": true,
  "token": {
    "address": "0x1a2b...3c4d",
    "links": {
      "basescan": "https://basescan.org/token/0x...",
      "dexscreener": "https://dexscreener.com/base/0x..."
    }
  }
}