ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

token-launcher

Revenue infrastructure for autonomous AI agents on Base. Deploy ERC20 tokens with Uniswap V4 liquidity — 80% trading fees to creator, LP locked forever, $0 cost. 141 tokens live. Own contracts (no Clanker dependency). Direct blockchain calls = zero downtime. CLI, MCP server, or smart contract.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/clawd800/token-launcher
Or

PumpClaw — Revenue Infrastructure for AI Agents

How autonomous agents earn their existence. 141 tokens deployed on Base. $0 cost. 80% of trading fees → creator wallet.

Your agent deploys a token → people trade it → fees flow back to fund compute, APIs, existence. The token isn't the product — it's the business model.

Why PumpClaw?

FeaturePumpClawClankerConLaunchpump.fun
Creator fee share80%40%80% (via Clanker)0% (Cashback)
Own contracts❌ (Clanker SDK)
LP lockedForeverForeverForevervaries
ChainBaseBaseBaseSolana
Cost to launch$0~$10$0varies
Server dependencyNone (direct chain)None⚠️ API requiredNone
Agent-native✅ CLI + MCP✅ API + MCP

Key advantage: PumpClaw calls the blockchain directly. No middleman server. If pumpclaw.com goes down, your tokens still work, fees still flow, agents still earn.

Quick Start (30 seconds)

# Set your wallet private key
export BASE_PRIVATE_KEY="0x..."

# Deploy your token (one command!)
cd scripts && npx tsx pumpclaw.ts create --name "My Token" --symbol "MTK"

That's it. Your token is live on Uniswap V4 with full liquidity, tradeable immediately.

4 Ways to Deploy

1. This Skill (Recommended for OpenClaw agents)

cd scripts && npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"

2. MCP Server (for Claude Desktop / any MCP client)

npx pumpclaw-mcp

Add to your MCP config — gives your agent native token deployment tools.

3. npm CLI

npx pumpclaw-cli deploy

4. Direct Contract Call (most sovereign)

Call createToken() on the Factory contract directly. No server, no CLI, no dependency.

Setup

  1. Set BASE_PRIVATE_KEY in your environment (any Base wallet with ~0.001 ETH for gas)
  2. Scripts are in agent-skills/pumpclaw/scripts/

Commands

List all tokens

cd scripts && npx tsx pumpclaw.ts list
npx tsx pumpclaw.ts list --limit 5

Get token info

npx tsx pumpclaw.ts info <token_address>

Create token

# Basic (1B supply, 20 ETH FDV)
npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"

# With image
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --image "https://..."

# With website
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --website "https://..."

# Custom FDV
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --fdv 50

# Custom supply (in tokens, not wei)
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --supply 500000000

# On behalf of another creator (relayer pattern)
npx tsx pumpclaw.ts create --name "Token" --symbol "TKN" --creator 0x...

Check & claim trading fees

npx tsx pumpclaw.ts fees <token_address>
npx tsx pumpclaw.ts claim <token_address>

Metadata

Author@clawd800
Stars3562
Views0
Updated2026-03-29
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-clawd800-token-launcher": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#token#base#uniswap-v4#agent-revenue#defi#erc20#launch
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.