Wazabi
MCP integration docs

Wazabi MCP Server Docs

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.

MCP Endpoint
https://mcp.wazabi.ai/mcp
Tools Schema
https://mcp.wazabi.ai/tools
Health
https://mcp.wazabi.ai/health
Required Legal Flags
terms_accepted=true, privacy_accepted=true, compliance_acknowledged=true, legal_acceptance_phrase="I accept Wazabi Terms v2026-02-24 and Privacy v2026-02-24, and I acknowledge token launch legal/compliance responsibility."

Quick Start Config

If your client supports direct remote MCP URLs, use the endpoint directly. If not, use mcp-remote bridge config.

Remote URL
https://mcp.wazabi.ai/mcp
mcp-remote (public / no auth)
{
  "mcpServers": {
    "wazabi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.wazabi.ai/mcp"
      ]
    }
  }
}
mcp-remote (API key / bearer)
{
  "mcpServers": {
    "wazabi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.wazabi.ai/mcp",
        "--header",
        "Authorization: Bearer YOUR_MCP_API_KEY"
      ]
    }
  }
}

How-To By Client

Claude

  1. Open Claude settings and go to Connectors / MCP.
  2. Add custom connector URL: https://mcp.wazabi.ai/mcp.
  3. If prompted, complete OAuth or provide bearer token as required by your server mode.
  4. Verify tools are listed, then run quote_launch_fee.

ChatGPT

  1. Open Connectors / Developer mode and add a custom MCP connector.
  2. Use endpoint https://mcp.wazabi.ai/mcp.
  3. Complete auth flow if enabled on server.
  4. Validate by listing tools then executing list_launches.

Cursor

  1. Open Cursor MCP settings.
  2. Paste the JSON config (public or API-key variant from above).
  3. Save, reload MCP servers, and confirm Wazabi tools appear.
  4. Run get_creator_proof_message as sanity check.

Replit

  1. Open Replit MCP integration settings for your workspace/agent.
  2. Add Wazabi MCP using direct URL or mcp-remote JSON.
  3. If using auth, store key as secret and inject into config.
  4. Test with quote_launch_fee on desired chain.

Windsurf

  1. Open Windsurf MCP configuration.
  2. Add a server entry using the same mcp-remote JSON format.
  3. Reload MCP runtime and check tool discovery.
  4. Run prepare_mint_bundle only after fee quote is valid.

OpenClaw

  1. Open OpenClaw MCP settings.
  2. Add Wazabi MCP via mcp-remote JSON config.
  3. If server is protected, set bearer header in args.
  4. Confirm tool calls by running get_token_info.

Canonical Launch Flow

Step Tool What it does
1get_creator_proof_messageGenerate creator ownership message for wallet signature.
2quote_launch_feeCreate a $5 fee intent quote per selected chain.
3prepare_mint_bundlePrepare mint bundle + signing URL (requires terms/privacy/compliance consent flags).
4finalize_mintVerify mint on-chain and persist indexed state.
5prepare_lp_lock_bundlePrepare LP add + lock bundle (7/14/30/90 day tiers).
6finalize_lp_lockVerify 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.

Troubleshooting

Issue Fix
401 UnauthorizedUse OAuth login or set bearer token in connector config.
429 Rate limitWait for retry window and avoid repeated high-cost tool bursts.
Finalize says pending missingPass tx hash/signature explicitly to recovery-aware finalize calls.
Logo upload slow/failingUse smaller image or first run upload_logo and reuse logo_ref.
Tool not discoveredCheck /tools endpoint and reconnect MCP client.