Documentation

For AI Agents

v2.3.5

Your agent can launch its own token. No wallet. No human in the loop. One API call.

Agent Launch exposes a full programmatic API, TypeScript SDK, CLI tool, and MCP server designed for autonomous AI agents. Authenticate with your Agentverse API key — no wallet signature needed. Create tokens, generate handoff links, and let humans complete on-chain deployments. Works with any agent framework: uAgents, LangChain, CrewAI, AutoGPT.

You are in:TutorialDiscoverConnectTokenizeAPI Docs (For Agents)
Quick Reference
SDKnpm install agentlaunch-sdk
CLInpx agentlaunch
MCPnpx agent-launch-mcp@latest
Create Agentnpx agentlaunch my-agent --local
Run in terminal to install

1 API Call. 1 Field. Done.

Your agent knows its own address. That's all it needs. Smart defaults auto-fill name, symbol, description, and image from Agentverse metadata.

Request

bash
curl -X POST https://agent-launch.ai/api/agents/tokenize \  -H "X-API-Key: YOUR_AGENTVERSE_API_KEY" \  -H "Content-Type: application/json" \  -d '{"agentAddress": "agent1q..."}'

Response

json
{  "success": true,  "data": {    "token_id": 42,    "handoff_link": "https://agent-launch.ai/deploy/42",    "name": "PriceBot",    "symbol": "PRIC",    "status": "pending_deploy"  }}
Smart Defaults (when only agentAddress is provided)
nameFetched from Agentverse agent metadata
symbolFirst 4 characters of name, uppercased
descriptionAuto-generated from agent stats
imagePlaceholder SVG generated
chainIdDefaults to BSC (97 testnet, 56 mainnet)
1
Agent calls API
2
Gets handoff link
3
Human clicks & signs
Token is live

Agent does the thinking. Human does the signing. Token is tradeable on the bonding curve immediately.

Agent Toolkit

SDK, CLI, MCP tools, and templates. Build however you want.

Three Integration Modes

API Reference

API Key Authentication

Recommended

The simplest way for AI agents to authenticate. One command creates everything you need.

  1. Generate wallet + API key (zero-to-hero)
    npx agentlaunch auth wallet --generate
    Or manually at agentverse.ai/profile/api-keys
  2. Add the header to every request
    X-API-Key: YOUR_AGENTVERSE_API_KEY
bash
curl -X POST https://agent-launch.ai/api/agents/tokenize \  -H "X-API-Key: YOUR_AGENTVERSE_API_KEY" \  -H "Content-Type: application/json" \  -d '{"agentAddress": "agent1q..."}'

JWT Authentication

Alternative

Wallet-based authentication for when a private key is available.

typescript
import { ethers } from 'ethers';import axios from 'axios';
// 1. Connect walletconst wallet = new ethers.Wallet('YOUR_PRIVATE_KEY');
// 2. Sign messageconst signature = await wallet.signMessage("Sign this message to authenticate");
// 3. Login → get JWTconst { data } = await axios.post('https://agent-launch.ai/api/users/login', {  address: wallet.address,  signature,});
// 4. Use token: Authorization: Bearer <jwt>const jwt = data.token;

Autonomous On-Chain Trading

New in v0.2.13

Agents can now execute buys and sells directly on the bonding curve without any human interaction. Use the SDK, CLI, or MCP trading tools. Requires a wallet private key — use a dedicated testnet wallet.

SDK
typescript
import { buyTokens, sellTokens } from 'agentlaunch-sdk';
// Buy 10 FET worth of tokensconst result = await buyTokens('0xToken...', '10', {  chainId: 97, slippagePercent: 5,});console.log(result.txHash);
// Sell 50,000 tokensawait sellTokens('0xToken...', '50000');
CLI
bash
# Preview (no wallet needed)agentlaunch buy 0xToken... --amount 10 --dry-run
# Execute (requires WALLET_PRIVATE_KEY)agentlaunch buy 0xToken... --amount 10 --slippage 5agentlaunch sell 0xToken... --amount 50000
MCP
typescript
// Ask Claude Code:// "Buy 10 FET of 0xToken... with 5% slippage"// "Show me a dry run of selling 50000 tokens"// "What are my current balances for 0xToken?"//// Tools: buy_tokens, sell_tokens, get_wallet_balances// Set WALLET_PRIVATE_KEY in MCP env config
Security: Never commit private keys to source control. Use a dedicated testnet wallet. The WALLET_PRIVATE_KEY env var is read at runtime and never logged or stored by the SDK.

Deploy a Token Launcher Agent

Create a uAgent that runs on Agentverse and responds to chat messages like "Launch token called MyCoin ticker MC". Your agent handles the API calls, generates handoff links, and lets humans sign the on-chain transactions.

Advanced Topics

Resources & Tools

Fees
Deployment (one-time)120 FET
Trading fee (buy & sell)2% to protocol treasury
DEX graduation target30,000 FET
Gas (Approve + Deploy)~0.002 BNB

Build your first AI agent in 5 minutes

Create, deploy, and tokenize — all from your terminal.