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

#Upstream MCP Servers

Wazabi Super MCP aggregates these upstream servers into a single endpoint. Each has its own official docs linked below.

Helius60+ tools

Solana RPC, DAS API, webhooks, wallet analysis, transaction parsing

helius.dev/docs/agents/mcp
Docs
DFlowVariable

Token swaps, prediction markets, DFlow trading on Solana

pond.dflow.net/build/mcp
Docs
Coinbase x4027 tools

Agentic commerce via x402 protocol, USDC payment flows, programmatic payouts

docs.cdp.coinbase.com/x402
Docs

#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"
      ]
    }
  }
}

#All Tools

24 tools total. Friendly aliases are the recommended names — they map 1:1 to the canonical tool names.

Friendly aliasCanonical nameCategoryDescription
get_launch_quotequote_launch_feePricingGet a $5 launch fee quote in native token for the selected chain.
launch_tokenprepare_mint_bundleMintingPrepare mint transaction bundle (step 1). Enforces metadata fields and IPFS pinning.
complete_mintfinalize_mintMintingFinalize mint step after on-chain confirmation. Accepts tx hash or explorer URL.
add_lp_lockprepare_lp_lock_bundleLiquidityPrepare LP add + lock bundle with tier-based fees and optional initial buy.
complete_launchfinalize_lp_lockLiquidityFinalize LP lock and index token launch for discovery.
collect_lp_feesprepare_collect_fees_bundleFeesPrepare LP fee collection. EVM returns collectFees tx; Solana returns Raydium collect + treasury split.
complete_collect_feesfinalize_collect_feesFeesFinalize LP fee collection after tx confirmation.
token_infoget_token_infoDiscoveryGet detailed information about a launched token.
discover_tokenslist_launchesDiscoveryList recent launches with optional chain and search filters.
get_launch_update_messageget_launch_link_update_messageManagementGenerate signing message for updating launch URLs post-deployment.
update_app_linksupdate_launch_linksManagementUpdate launch URLs (app/project/github/artifact). Requires creator wallet signature.
get_creator_proof_messageAuthReturn the canonical message a creator should sign to prove launch ownership.
upload_logoAssetsUpload/pin a token logo to IPFS or auto-generate a deterministic SVG with style variants.

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

StepAliasCanonicalWhat it does
1get_creator_proof_messageReturn the canonical message to sign with your wallet to prove launch ownership.
2get_launch_quotequote_launch_feeGet a time-limited $5 launch fee quote in native token for the selected chain.
3upload_logoUpload/pin token logo to IPFS or auto-generate a deterministic SVG logo.
4launch_tokenprepare_mint_bundlePrepare mint transaction bundle. Enforces required metadata fields and IPFS pinning.
5complete_mintfinalize_mintFinalize mint after on-chain confirmation. Accepts tx hash, signature, or explorer URL.
6add_lp_lockprepare_lp_lock_bundlePrepare LP add + lock bundle with tier-based fees (7/14/30/90 days) and optional initial buy.
7complete_launchfinalize_lp_lockFinalize LP lock after on-chain confirmation. Indexes token launch for discovery.

#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