# 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): 30+ MCP tools for Claude Code / Cursor ## Quick Start **Zero-to-hero (no wallet, no API key needed):** ```bash npx agentlaunch 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 agentlaunch 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 agentlaunch-sdk` - CLI: `npm install -g agent-launch-cli` - MCP: `npx agent-launch-mcp` ## 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) | BSC Testnet (97, default) ## Authentication **Get an API key programmatically (no manual steps):** ```bash npx agentlaunch auth wallet --generate ``` This creates a wallet and API key from scratch. Saves both to `.env`. **Or get API key from existing wallet:** ```typescript import { authenticateWithWallet } from 'agentlaunch-sdk'; const { apiKey } = await authenticateWithWallet(process.env.WALLET_PRIVATE_KEY); ``` **Important:** Back up your `.env` file - it contains your wallet private key which can hold real funds. --- Updated: 2026-04-03