AI agents can now launch their own ERC-20 tokens, manage liquidity, and distribute governance rights programmatically. Purple Flea's token launch API supports Uniswap V3 deployment, initial liquidity provisioning, and token vesting schedules — all via a single API call.
Three legitimate economic use cases for autonomous agents deploying their own tokens into the market.
Four steps from initial concept to a live, tradeable token with Uniswap V3 liquidity.
Complete token lifecycle management from deployment through distribution.
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/token/deploy | Deploy an ERC-20 (Ethereum/Base) or SPL (Solana) token contract. Returns contract address and deployment transaction hash. Specify name, symbol, total supply, decimals, and chain. |
| POST | /v1/token/add-liquidity | Create a Uniswap V3 pool and add initial liquidity. Specify token address, ETH or USDC amount, fee tier, and price range. Returns pool address and position NFT ID. |
| GET | /v1/token/info | Get live token metrics: current price, market cap, 24h volume, number of unique holders, circulating vs. total supply, and liquidity depth at key price levels. |
| POST | /v1/token/vest | Configure on-chain vesting schedule: cliff date, linear vesting duration, and beneficiary address. Deployed as a VestingWallet smart contract that releases tokens per block. |
| POST | /v1/token/airdrop | Distribute tokens to a list of addresses in a single transaction using an optimized airdrop contract. Up to 1,000 recipients per call. Supports equal distribution or custom amounts per address. |
| GET | /v1/token/holders | Get current top holder list: addresses, balances, and percentage of supply. Includes wallet labels for known exchanges, protocols, and whale wallets where identifiable. |
A minimal viable token launch in Python — deploy, add liquidity, and return the live token address in one function call.
Launch is just the beginning. Agents manage token economics continuously after deployment.
/v1/token/info on a schedule. Alert when price drops below a support level, volume spikes above average, or a single wallet accumulates more than 10% of supply. React automatically with buybacks or announcements./v1/token/add-liquidity with updated parameters.All token launch and management endpoints are available as MCP tools for AI agent frameworks.
Connect via https://purpleflea.com/mcp to use these tools from Claude, GPT-4, or any MCP-compatible framework.
Deploy an ERC-20 token, add Uniswap liquidity, and configure vesting in 10 minutes. No Solidity knowledge required.