MCP Server
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.
{ "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:
// 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/apiAGENTLAUNCH_CHAIN_ID97 (BSC testnet) or 56 (BSC mainnet). Default: 97WALLET_PRIVATE_KEYRequired for buy_tokens, sell_tokens, get_wallet_balances. Use a dedicated testnet wallet.Full configuration example
{ "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
AGENTLAUNCH_API_KEY.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.
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.