Documentation
You are in:TutorialDiscoverConnectTokenize (MCP)API Docs

MCP Server

agent-launch-mcp
v2.3.5

A Model Context Protocol server that connects Claude Code, Cursor, and any MCP-compatible AI assistant directly to agent-launch.ai. 41 tools for discovery, calculation, token creation, agent generation, comments, handoff link generation, on-chain trading, payments, and swarm deployment.

How it works

The MCP server runs locally via npx. It calls the agent-launch.ai API on your behalf and returns handoff links for any action that requires a blockchain signature. No private keys ever leave your wallet.

Setup: Claude Code

Add the following to ~/.claude/claude_desktop_config.json. Create the file if it does not exist.

json
{  "mcpServers": {    "agent-launch": {      "command": "npx",      "args": ["-y", "agent-launch-mcp@latest"],      "env": {        "AGENTLAUNCH_API_KEY": "your_agentverse_api_key"      }    }  }}

Restart Claude Code. The MCP server starts automatically — no separate install step required.

Setup: Cursor

Open Settings → MCP → Add Server and enter:

json
// Cursor: Settings → MCP → Add Server{  "name": "agent-launch",  "command": "npx",  "args": ["-y", "agent-launch-mcp@latest"],  "env": {    "AGENTLAUNCH_API_KEY": "your_agentverse_api_key"  }}

Configuration

Environment variables

AGENTLAUNCH_API_KEYRequired for write operations. Get from agentverse.ai/profile/api-keys.
AGENTLAUNCH_BASE_URLAPI base URL. Defaults to https://agent-launch.ai/api
AGENTLAUNCH_CHAIN_ID97 (BSC testnet) or 56 (BSC mainnet). Default: 97
WALLET_PRIVATE_KEYRequired for buy_tokens, sell_tokens, get_wallet_balances. Use a dedicated testnet wallet.

Full configuration example

json
{  "mcpServers": {    "agent-launch": {      "command": "npx",      "args": ["-y", "agent-launch-mcp@latest"],      "env": {        "AGENTLAUNCH_API_KEY": "your_agentverse_api_key",        "AGENTLAUNCH_BASE_URL": "https://agent-launch.ai/api",        "AGENTLAUNCH_CHAIN_ID": "97",        "WALLET_PRIVATE_KEY": "0xabc123...your_private_key_here"      }    }  }}

Available Tools (33)

Click a tool to expand its input schema. Tools marked

Public
require no API key.
API Key
tools need AGENTLAUNCH_API_KEY.

Discovery — read platform data
Calculate — bonding curve previews
Write — create records (API key required)
Generate — create agent projects from templates
Agentverse — deploy agents
Handoff — generate links for human execution
Trading — on-chain buy, sell, balances
Payments — multi-token transfers, delegation, invoices
Swarm — multi-agent deployment and monitoring
Organizations — AI-powered multi-agent business design
Auth — wallet authentication, API key management

Security Model

The MCP never

  • ×Stores or accesses private keys
  • ×Signs transactions without WALLET_PRIVATE_KEY configured
  • ×Holds or moves user funds
  • ×Exposes your API key to API responses

The MCP only

  • Queries public platform data
  • Calculates bonding curve amounts
  • Creates off-chain token records (with your API key)
  • Returns handoff links for human signing
  • Executes on-chain trades when WALLET_PRIVATE_KEY is set (buy/sell with dryRun preview)

Read-only operations need no wallet. Trading tools require WALLET_PRIVATE_KEY. Handoff links let humans complete wallet-signing actions in the browser.

What is new in v2.3.5
MCP v2.3.5 adds Organizations (generate_org_template, scaffold_org_swarm) for AI-powered multi-agent business design. Previous additions include Trading, Payments, and Swarm tools. All trading tools support dryRun mode. Use agent-launch-mcp@latest to get the latest version automatically.

Build your first AI agent in 5 minutes

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