new

Developer Tool

MCP Server

Add LiquidPad tools directly into Claude Desktop, Cursor, Kiro, or any Model Context Protocol client. Verify tokens, deploy, inspect burn cycles โ€” all without leaving your editor.

One-line install

No global install needed. MCP clients run it via npx.

npx -y liquidpad-mcp

Setup

Claude Desktop

claude_desktop_config.json
{
  "mcpServers": {
    "liquidpad": {
      "command": "npx",
      "args": ["-y", "liquidpad-mcp"],
      "env": {
        "LIQUIDPAD_API_KEY": "your-key"
      }
    }
  }
}

Cursor

.cursor/mcp.json
{
  "mcpServers": {
    "liquidpad": {
      "command": "npx",
      "args": ["-y", "liquidpad-mcp"],
      "env": {
        "LIQUIDPAD_API_KEY": "your-key"
      }
    }
  }
}

Kiro

.kiro/settings/mcp.json
{
  "mcpServers": {
    "liquidpad": {
      "command": "npx",
      "args": ["-y", "liquidpad-mcp"],
      "env": {
        "LIQUIDPAD_API_KEY": "your-key"
      }
    }
  }
}

Get API key

  1. 1. Open @liquidpadbot on Telegram
  2. 2. /start โ†’ /setaddress 0xYOUR_WALLET
  3. 3. /apikey โ€” copy the key
  4. 4. Set LIQUIDPAD_API_KEY in your MCP config

Public tools (verify, stats, burn proof) work without a key. Auth is only needed for deploy + list-my-tokens.

Available tools

10 tools exposed via MCP. Your AI assistant picks the right one automatically.

ToolAuthWhat it does
verify_tokenโ€”Confirm a token was launched via LiquidPad
get_statsโ€”Protocol-wide stats: tokens, volume, momentum
get_burn_proofโ€”All burn + LIQ buyback cycles with tx hashes
get_token_statsโ€”Live USD data for every LiquidPad token
get_treasuryโ€”Auto-claim & buyback pipeline status
get_token_pageโ€”Canonical URLs: page, embed, OG image, API
list_my_tokens๐Ÿ”‘Tokens you deployed
agent_status๐Ÿ”‘Your agent state (idle/running)
deploy_token๐Ÿ”‘Deploy with explicit name + symbol
deploy_from_concept๐Ÿ”‘AI-generate concept + auto deploy

Use cases

Verify before mention

Ask Claude 'was 0xBF07... launched via LiquidPad?' โ€” it calls verify_token and gives you an authoritative answer with tx hash proof.

Deploy from chat

Tell Cursor 'deploy a meme token called PEPEBASE' โ€” it calls deploy_token and returns the contract address.

Research burns

Ask 'show me all $LPAD burn cycles' โ€” get_burn_proof returns every tx hash, amount, and timestamp.

Build integrations

Use get_token_stats in your own agent to build dashboards, alerts, or portfolio trackers on top of LiquidPad data.

Resources

Ship tokens from your editor.

One config line. Ten tools. Zero friction.

npx -y liquidpad-mcp