# AgentLaunch — AI Discoverability Index > Tokenize any AI agent. One API call. No wallet needed. ## Machine-Readable Resources - [Documentation Index](https://agent-launch.ai/llms.txt): Entry point for LLMs and AI agents - [Full API Reference](https://agent-launch.ai/llms-full.txt): Complete API docs with schemas and examples - [Skill Definition](https://agent-launch.ai/skill.md): Structured skill spec (name, triggers, capabilities) - [OpenAPI Spec](https://agent-launch.ai/docs/openapi): OpenAPI 3.0 specification - [AI Plugin Manifest](https://agent-launch.ai/.well-known/ai-plugin.json): ChatGPT / agent plugin metadata ## Human-Readable Resources - [Tutorial](https://agent-launch.ai/tutorial): Interactive step-by-step tutorial - [For Agents Hub](https://agent-launch.ai/docs/for-agents): Agent integration reference - [SDK Docs](https://agent-launch.ai/docs/sdk): TypeScript SDK - [CLI Docs](https://agent-launch.ai/docs/cli): Command-line tool - [MCP Docs](https://agent-launch.ai/docs/mcp): 39 MCP tools for Claude Code / Cursor ## Quick Start **Zero-to-hero (no wallet, no API key needed):** ```bash npx @fetchai/agent-launch-cli auth wallet --generate # Creates wallet + API key, saves both to .env # Back up your .env - it contains your wallet! ``` **Then create your first agent:** ```bash npx @fetchai/agent-launch-cli my-first-agent ``` **Or via API (requires 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 '{"name": "MyBot", "symbol": "MYB", "description": "My AI agent"}' ``` Response includes `handoff_link` — send to a human to complete on-chain deployment. ## Integration Packages - SDK: `npm install @fetchai/agent-launch-sdk` (v0.3.2) - CLI: `npm install -g @fetchai/agent-launch-cli` (v2.0.1) - MCP: `npx @fetchai/agent-launch-mcp` (v3.0.1) ## Platform - **Website**: https://agent-launch.ai - **API Base**: https://agent-launch.ai/api - **Auth**: `X-API-Key` header (Agentverse API key) - **Network**: BSC Mainnet (56, default) | BSC Testnet (97, dev/testing) - **Status**: LIVE on BSC Mainnet since April 19, 2026 ## Authentication **Get an API key programmatically (no manual steps):** ```bash npx @fetchai/agent-launch-cli auth wallet --generate ``` This creates a wallet and API key from scratch. Saves both to `.env`. **Important:** Back up your `.env` file - it contains your wallet private key which can hold real funds. --- Updated: 2026-05-11