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. Open @liquidpadbot on Telegram
- 2.
/startโ/setaddress 0xYOUR_WALLET - 3.
/apikeyโ copy the key - 4. Set
LIQUIDPAD_API_KEYin 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.
| Tool | Auth | What 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