#MCP Endpoint
#Upstream MCP Servers
Wazabi Super MCP aggregates these upstream servers into a single endpoint. Each has its own official docs linked below.
Solana RPC, DAS API, webhooks, wallet analysis, transaction parsing
helius.dev/docs/agents/mcpToken swaps, prediction markets, DFlow trading on Solana
pond.dflow.net/build/mcpAgentic commerce via x402 protocol, USDC payment flows, programmatic payouts
docs.cdp.coinbase.com/x402#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/mcpmcp-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"
]
}
}
}#All Tools
24 tools total. Friendly aliases are the recommended names — they map 1:1 to the canonical tool names.
| Friendly alias | Canonical name | Category | Description |
|---|---|---|---|
get_launch_quote | quote_launch_fee | Pricing | Get a $5 launch fee quote in native token for the selected chain. |
launch_token | prepare_mint_bundle | Minting | Prepare mint transaction bundle (step 1). Enforces metadata fields and IPFS pinning. |
complete_mint | finalize_mint | Minting | Finalize mint step after on-chain confirmation. Accepts tx hash or explorer URL. |
add_lp_lock | prepare_lp_lock_bundle | Liquidity | Prepare LP add + lock bundle with tier-based fees and optional initial buy. |
complete_launch | finalize_lp_lock | Liquidity | Finalize LP lock and index token launch for discovery. |
collect_lp_fees | prepare_collect_fees_bundle | Fees | Prepare LP fee collection. EVM returns collectFees tx; Solana returns Raydium collect + treasury split. |
complete_collect_fees | finalize_collect_fees | Fees | Finalize LP fee collection after tx confirmation. |
token_info | get_token_info | Discovery | Get detailed information about a launched token. |
discover_tokens | list_launches | Discovery | List recent launches with optional chain and search filters. |
get_launch_update_message | get_launch_link_update_message | Management | Generate signing message for updating launch URLs post-deployment. |
update_app_links | update_launch_links | Management | Update launch URLs (app/project/github/artifact). Requires creator wallet signature. |
get_creator_proof_message | — | Auth | Return the canonical message a creator should sign to prove launch ownership. |
upload_logo | — | Assets | Upload/pin a token logo to IPFS or auto-generate a deterministic SVG with style variants. |
#How-To By Client
Claude
- 1Open Claude settings and go to Connectors / MCP.
- 2Add custom connector URL: https://mcp.wazabi.ai/mcp.
- 3If prompted, complete OAuth or provide bearer token as required by your server mode.
- 4Verify tools are listed, then run quote_launch_fee.
ChatGPT
- 1Open Connectors / Developer mode and add a custom MCP connector.
- 2Use endpoint https://mcp.wazabi.ai/mcp.
- 3Complete auth flow if enabled on server.
- 4Validate by listing tools then executing list_launches.
Cursor
- 1Open Cursor MCP settings.
- 2Paste the JSON config (public or API-key variant from above).
- 3Save, reload MCP servers, and confirm Wazabi tools appear.
- 4Run get_creator_proof_message as sanity check.
Replit
- 1Open Replit MCP integration settings for your workspace/agent.
- 2Add Wazabi MCP using direct URL or mcp-remote JSON.
- 3If using auth, store key as secret and inject into config.
- 4Test with quote_launch_fee on desired chain.
Codex
- 1Open Codex MCP configuration.
- 2Add a server entry using the same mcp-remote JSON format.
- 3Reload MCP runtime and check tool discovery.
- 4Run prepare_mint_bundle only after fee quote is valid.
Windsurf
- 1Open Windsurf MCP settings.
- 2Add Wazabi MCP using direct URL or mcp-remote JSON config.
- 3If using auth, configure bearer token in settings.
- 4Run list_launches to verify connection.
OpenClaw
- 1Open OpenClaw MCP settings.
- 2Add Wazabi MCP via mcp-remote JSON config.
- 3If server is protected, set bearer header in args.
- 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.
| Step | Alias | Canonical | What it does |
|---|---|---|---|
| 1 | — | get_creator_proof_message | Return the canonical message to sign with your wallet to prove launch ownership. |
| 2 | get_launch_quote | quote_launch_fee | Get a time-limited $5 launch fee quote in native token for the selected chain. |
| 3 | — | upload_logo | Upload/pin token logo to IPFS or auto-generate a deterministic SVG logo. |
| 4 | launch_token | prepare_mint_bundle | Prepare mint transaction bundle. Enforces required metadata fields and IPFS pinning. |
| 5 | complete_mint | finalize_mint | Finalize mint after on-chain confirmation. Accepts tx hash, signature, or explorer URL. |
| 6 | add_lp_lock | prepare_lp_lock_bundle | Prepare LP add + lock bundle with tier-based fees (7/14/30/90 days) and optional initial buy. |
| 7 | complete_launch | finalize_lp_lock | Finalize LP lock after on-chain confirmation. Indexes token launch for discovery. |
#Troubleshooting
| 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. |
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