Wazabi/MCP integration docs

Wazabi MCP Server Docs

Use this guide to connect Wazabi MCP into Claude, ChatGPT, Cursor, Replit, Codex, Windsurf, and OpenClaw. This server is mainnet-only and uses the mint-first then LP-lock flow.

#MCP Endpoint

MCP Endpoint
https://mcp.wazabi.ai/mcp
Tools Schema
https://mcp.wazabi.ai/tools
Health
https://mcp.wazabi.ai/health

#Quick Start Config

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

Remote URL

url
https://mcp.wazabi.ai/mcp

mcp-remote (public / no auth)

json
{
  "mcpServers": {
    "wazabi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.wazabi.ai/mcp"
      ]
    }
  }
}

mcp-remote (API key / bearer)

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

ChatGPT

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

Cursor

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

Replit

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

Codex

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

Windsurf

  1. 1Open Windsurf MCP settings.
  2. 2Add Wazabi MCP using direct URL or mcp-remote JSON config.
  3. 3If using auth, configure bearer token in settings.
  4. 4Run list_launches to verify connection.

OpenClaw

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

#Canonical Launch Flow

Mint first, then LP lock. Default supply is 1,000,000,000 tokens. Creator allocation is 3–10% depending on lock tier.

StepToolWhat 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 transaction bundle + signing URL.
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.

#Troubleshooting

IssueFix
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.

Ready to connect?

Point Claude, Cursor, Codex, Windsurf, or any MCP-compatible client at the Wazabi server and start launching tokens onchain.

Open MCP Server