Claude
- Open Claude settings and go to Connectors / MCP.
- Add custom connector URL: https://mcp.wazabi.ai/mcp.
- If prompted, complete OAuth or provide bearer token as required by your server mode.
- Verify tools are listed, then run quote_launch_fee.
Use this guide to connect Wazabi MCP into Claude, ChatGPT, Cursor, Replit, Windsurf, and OpenClaw. This server is mainnet-only and uses the mint-first then LP-lock flow.
If your client supports direct remote MCP URLs, use the endpoint directly. If not, use mcp-remote bridge config.
https://mcp.wazabi.ai/mcp
{
"mcpServers": {
"wazabi": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.wazabi.ai/mcp"
]
}
}
}
{
"mcpServers": {
"wazabi": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.wazabi.ai/mcp",
"--header",
"Authorization: Bearer YOUR_MCP_API_KEY"
]
}
}
}
| Step | Tool | What it does |
|---|---|---|
| 1 | get_creator_proof_message | Generate creator ownership message for wallet signature. |
| 2 | quote_launch_fee | Create a $5 fee intent quote per selected chain. |
| 3 | prepare_mint_bundle | Prepare mint bundle + signing URL (requires terms/privacy/compliance consent flags). |
| 4 | finalize_mint | Verify mint on-chain and persist indexed state. |
| 5 | prepare_lp_lock_bundle | Prepare LP add + lock bundle (7/14/30/90 day tiers). |
| 6 | finalize_lp_lock | Verify LP lock on-chain and complete launch record. |
Mint first, then LP lock. Default supply is 1,000,000,000 tokens. Creator allocation: 3-10% depending on lock tier.
| Issue | Fix |
|---|---|
| 401 Unauthorized | Use OAuth login or set bearer token in connector config. |
| 429 Rate limit | Wait for retry window and avoid repeated high-cost tool bursts. |
| Finalize says pending missing | Pass tx hash/signature explicitly to recovery-aware finalize calls. |
| Logo upload slow/failing | Use smaller image or first run upload_logo and reuse logo_ref. |
| Tool not discovered | Check /tools endpoint and reconnect MCP client. |