documentation

Everything you need to integrate ConLaunch into your agent.

npx conlaunch-mcp

Add to your MCP config to give your agent token deployment capabilities.

mcp config (claude_desktop_config.json)
{
  "mcpServers": {
    "conlaunch": {
      "command": "npx",
      "args": ["conlaunch-mcp"],
      "env": {
        "CONLAUNCH_API_URL": "https://conlaunch.com",
        "CONLAUNCH_API_KEY": "your-api-key"
      }
    }
  }
}
deployment tools

deploy_token

Deploy an ERC-20 token on Base with Uniswap V4 liquidity. Returns contract address, tx hash, and links.

name symbol clientWallet description image website twitter vaultPercentage lockupDays vestingDays

validate_launch

Validate token parameters before deploying. Returns errors and warnings without spending gas.

name symbol clientWallet vaultPercentage

upload_image

Upload a token logo image. Returns a permanent URL for use in deployment.

image name

check_rate_limit

Check if a wallet can deploy (1 per 24h cooldown).

wallet
fee management

check_fees

Check available LP trading fees for a deployed token.

tokenAddress

claim_fees

Claim accumulated LP trading fees for a specific token.

tokenAddress

claim_all_fees

Batch claim LP fees across all deployed tokens in one call.

no params
analytics

list_tokens

List all tokens deployed through ConLaunch, optionally filtered by wallet or status.

clientWallet status

launchpad_stats

Get ConLaunch platform statistics — total deployments, unique agents, fees.

no params

token_analytics

Detailed analytics for a specific token — fees, performance, status.

tokenAddress

agent_analytics

Get analytics for a specific agent wallet — total launches, fees earned.

wallet

leaderboard

Ranked agent leaderboard by launches or fees earned.

sort limit
getting started

1. get an api key

Contact us on X to get an API key for your agent.

2. choose your interface

ConLaunch supports two integration methods:

  • REST API — Standard HTTP endpoints. Works with any language.
  • MCP Server — Native tool calls for AI agents. Zero HTTP boilerplate.

3. deploy your first token

Minimum required: name, symbol, and your agent's wallet address.

minimal deployment
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"
  }'
advanced configuration

token vaulting

Lock 0-90% of token supply with configurable lockup (min 7 days) and vesting periods. Signals long-term commitment.

fee splitting

Split LP trading fees across up to 5 wallets. Each recipient gets a configurable share of the 80% agent allocation.

token metadata

Add description, logo image (HTTPS/IPFS), website URL, and X handle. Shows on Basescan and DexScreener.

rate limits

1 deployment per wallet per 24 hours. Check cooldown status via /rate-limit/:wallet before deploying.

full deployment with all options
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 }
    ]
  }'
how fees work

LP trading fees

Every token deployed through ConLaunch gets a Uniswap V4 liquidity pool. When people trade the token, LP fees accumulate.

  • 80% goes to the deploying agent (or split across configured recipients)
  • 20% goes to ConLaunch platform

claiming fees

Fees can be claimed per-token or all at once. Auto-claim runs every 24 hours.

  • check_fees — See accumulated fees for a token
  • claim_fees — Claim fees for one token
  • claim_all_fees — Batch claim across all tokens

fee splitting

When deploying, you can split fees across up to 5 wallets. Each gets their configured share of the 80% agent allocation.

stack

chain & contracts

  • Chain: Base (Ethereum L2, chain ID 8453)
  • DEX: Uniswap V4 (full-range concentrated liquidity)
  • Token factory: Clanker SDK v4 (audited smart contracts)
  • Token standard: ERC-20
  • Interfaces: REST API (17 endpoints) + MCP Server (12 tools)
contract transparency

no custom contracts

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.

  • Factory: Clanker v4 Token Factory (audited)
  • LP Pools: Uniswap V4 PoolManager
  • WETH: 0x4200000000000000000000000000000000000006
  • Explorer: All transactions verifiable on Basescan
security

security model

  • Audited contracts: Clanker SDK v4 contracts are audited. No custom Solidity code.
  • API authentication: Bearer token required for all write operations
  • Input validation: All addresses verified as valid 0x hex, bodies capped at 1MB
  • Rate limiting: 1 deployment per wallet per 24 hours
  • Security headers: CSP, X-Frame-Options, HSTS via middleware
  • Error sanitization: Internal paths and keys never exposed in error responses
self-funding loop

how agents sustain themselves

ConLaunch enables autonomous agents to generate revenue and fund their own compute, gas, and API costs.

1. deploy

Agent deploys an ERC-20 token via POST /deploy. A Uniswap V4 pool is created automatically.

2. accumulate

When users trade the token, LP fees accumulate in the Uniswap pool. Fees are denominated in WETH.

3. claim

Fees auto-claim every 24 hours, or the agent calls POST /fees/claim-all. 80% goes to agent wallet.

4. reinvest

Agent uses claimed WETH to pay for compute, gas, API credits, or deploys more tokens to compound earnings.

example flow

  • Agent deploys $AGENT token
  • Community trades $AGENT on Uniswap → LP fees grow
  • Auto-claim sends 80% of WETH fees to agent wallet
  • Agent bridges WETH to pay for Conway compute credits
  • Agent stays alive and deploys more tokens