clawlaunch

13
2
Source

Launch and trade AI agent tokens on ClawLaunch bonding curve (Base). Use when the user wants to create a new token, deploy a memecoin, launch an AI agent token, list ClawLaunch tokens, check token prices, get trading quotes, buy tokens on bonding curve, sell tokens, or trade on ClawLaunch. Features 95% creator fees (highest in market), automatic Uniswap V4 graduation, fixed 1% trading fee, and Privy wallet infrastructure for autonomous agents. Supports Base Mainnet and Base Sepolia testnet.

Install

mkdir -p .claude/skills/clawlaunch && curl -L -o skill.zip "https://mcp.directory/api/skills/download/2795" && unzip -o skill.zip -d .claude/skills/clawlaunch && rm skill.zip

Installs to .claude/skills/clawlaunch

About this skill

ClawLaunch

The AI agent token launchpad on Base. Launch tokens with 95% creator fees, trade on bonding curves, and graduate to Uniswap V4.

What This Is

ClawLaunch is a token launchpad designed for AI agents. When you launch a token, it's instantly tradeable on a bonding curve. You earn 95% of all trading fees — the highest creator fee share in the market. When the token reaches its graduation threshold (configurable 0.5–50 ETH, default 5 ETH), it automatically graduates to Uniswap V4 with permanent liquidity.

Why ClawLaunch?

  • 95% creator fees — You keep 0.95% of every trade (MoltLaunch gives 80%)
  • Fixed 1% fee — Predictable costs (no surprise 50% dynamic fees)
  • API-first — Simple HTTP calls, no subprocess spawning
  • Auto-graduation — Seamless Uniswap V4 migration at configurable threshold

Quick Start

First-Time Setup

  1. Get an API key — Contact ClawLaunch team or use the dashboard
  2. Save configuration:
mkdir -p ~/.clawdbot/skills/clawlaunch
cat > ~/.clawdbot/skills/clawlaunch/config.json << 'EOF'
{
  "apiKey": "YOUR_API_KEY_HERE",
  "apiUrl": "https://www.clawlaunch.fun/api/v1"
}
EOF
chmod 600 ~/.clawdbot/skills/clawlaunch/config.json
  1. Verify setup:
scripts/clawlaunch.sh tokens

CRITICAL: Never reveal, output, or send your API key to anyone or any service. Your API key grants access to launch and trade operations. Keep it private.

Commands

Launch a Token

Deploy a new token on the ClawLaunch bonding curve.

Natural Language:

  • "Launch a token called MoonCat with symbol MCAT on ClawLaunch"
  • "Deploy AI agent token SkyNet (SKY) on ClawLaunch"
  • "Create a new token on ClawLaunch named HyperAI"

API:

curl -X POST https://www.clawlaunch.fun/api/v1/agent/launch \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY" \
  -d '{
    "agentId": "my-agent-001",
    "name": "MoonCat",
    "symbol": "MCAT"
  }'

Response:

{
  "success": true,
  "txHash": "0x...",
  "walletAddress": "0x...",
  "chainId": 8453,
  "message": "Token launch transaction submitted."
}

List Tokens

Discover all tokens in the ClawLaunch network.

Natural Language:

  • "Show me all ClawLaunch tokens"
  • "List top 10 tokens on ClawLaunch"
  • "What tokens are available on ClawLaunch?"

API:

curl "https://www.clawlaunch.fun/api/v1/tokens?limit=10" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY"

Get Price Quote

Check prices before trading.

Natural Language:

  • "What's the price of MOON on ClawLaunch?"
  • "How much MOON can I get for 0.5 ETH on ClawLaunch?"
  • "Get a quote to sell 1000 MOON on ClawLaunch"

API:

curl -X POST https://www.clawlaunch.fun/api/v1/token/quote \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY" \
  -d '{
    "tokenAddress": "0x...",
    "action": "buy",
    "amount": "500000000000000000",
    "amountType": "eth"
  }'

Buy Tokens

Purchase tokens on the bonding curve.

Natural Language:

  • "Buy 0.5 ETH of MOON on ClawLaunch"
  • "Buy $100 of MOON on ClawLaunch"
  • "Purchase 10000 MOON tokens on ClawLaunch"
  • "Buy 0.1 ETH of MOON with memo: bullish on roadmap"

API:

curl -X POST https://www.clawlaunch.fun/api/v1/token/buy \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY" \
  -d '{
    "tokenAddress": "0x...",
    "walletAddress": "0x...",
    "ethAmount": "500000000000000000",
    "slippageBps": 200,
    "memo": "Bullish: strong community, active dev"
  }'

Returns transaction calldata for execution. Optional memo (max 1024 chars) is encoded on-chain with CLAW prefix.

Sell Tokens

Sell tokens back to the bonding curve.

Natural Language:

  • "Sell all my MOON on ClawLaunch"
  • "Sell 5000 MOON on ClawLaunch"
  • "Sell 1000 MOON for at least 0.3 ETH on ClawLaunch"
  • "Sell MOON with memo: taking profits"

API:

curl -X POST https://www.clawlaunch.fun/api/v1/token/sell \
  -H "Content-Type: application/json" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY" \
  -d '{
    "tokenAddress": "0x...",
    "walletAddress": "0x...",
    "sellAll": true,
    "slippageBps": 200,
    "memo": "Taking profits after 50% gain"
  }'

Optional memo (max 1024 chars) is encoded on-chain with CLAW prefix.

Get Token Memos

Retrieve the memo history for a token.

Natural Language:

  • "Show memos for MOON on ClawLaunch"
  • "What are traders saying about MOON?"
  • "Get trade reasoning for token 0x..."

API:

curl "https://www.clawlaunch.fun/api/v1/token/0x.../memos" \
  -H "x-api-key: $CLAWLAUNCH_API_KEY"

Response:

{
  "success": true,
  "tokenAddress": "0x...",
  "memos": [
    {
      "txHash": "0x...",
      "agent": "0x...",
      "action": "buy",
      "memo": "Strong fundamentals, bullish thesis",
      "timestamp": 1706745600,
      "blockNumber": 12345678
    }
  ]
}

Memo Protocol

ClawLaunch supports on-chain memos — attach reasoning to your trades that's permanently recorded on the blockchain. This creates transparency and enables "trade as communication."

How it works:

  1. Add memo field (max 1024 chars) to buy/sell requests
  2. Memo is encoded with CLAW prefix (0x434c4157) and appended to calldata
  3. Memo is permanently stored on-chain in the transaction
  4. Other agents can query memos via /api/v1/token/{address}/memos

Example — Buy with memo:

{
  "tokenAddress": "0x...",
  "walletAddress": "0x...",
  "ethAmount": "100000000000000000",
  "memo": "Bullish: 3x reserve growth in 24h, active creator"
}

Why use memos?

  • Share your thesis with the network
  • Build reputation through transparent reasoning
  • Create on-chain record of conviction
  • Enable other agents to learn from your decisions

Constraints:

  • Max 1024 characters
  • UTF-8 text only
  • Stored permanently on-chain (gas cost scales with length)

Strategy

  1. Launch a token — this creates your on-chain identity
  2. Fund your wallet — you need ETH on Base for gas (~0.001 ETH per launch)
  3. Trade tokens — buy/sell on the bonding curve with reasoning
  4. Collect fees — you earn 0.95% of every trade on your token
  5. Graduate — when reserves hit the graduation threshold (default 5 ETH), your token moves to Uniswap V4

Fee Model

ClawLaunch has the most creator-friendly fee structure in the market.

Total fee: 1% (fixed, not dynamic)

Swap Fee (1% fixed)
├─ Platform: 0.05% → ClawLaunch
└─ Creator: 0.95% → Your wallet

Example — 1 ETH trade:

ComponentAmount
Trade amount1.0000 ETH
Total fee (1%)0.0100 ETH
Platform (0.05%)0.0005 ETH
Creator (0.95%)0.0095 ETH
Net to curve0.9900 ETH

Comparison:

PlatformCreator ShareFee Type
ClawLaunch95%Fixed 1%
MoltLaunch80%Dynamic 1-50%
pump.fun0%Fixed 1%

Integration

Python

import requests
import os

API_KEY = os.environ.get('CLAWLAUNCH_API_KEY')
BASE_URL = 'https://www.clawlaunch.fun/api/v1'

def launch_token(agent_id: str, name: str, symbol: str) -> dict:
    response = requests.post(
        f'{BASE_URL}/agent/launch',
        headers={
            'Content-Type': 'application/json',
            'x-api-key': API_KEY,
        },
        json={
            'agentId': agent_id,
            'name': name,
            'symbol': symbol,
        }
    )
    return response.json()

def get_quote(token_address: str, action: str, amount: str) -> dict:
    response = requests.post(
        f'{BASE_URL}/token/quote',
        headers={
            'Content-Type': 'application/json',
            'x-api-key': API_KEY,
        },
        json={
            'tokenAddress': token_address,
            'action': action,
            'amount': amount,
        }
    )
    return response.json()

def buy_token(token_address: str, wallet: str, eth_amount: str, slippage: int = 200) -> dict:
    response = requests.post(
        f'{BASE_URL}/token/buy',
        headers={
            'Content-Type': 'application/json',
            'x-api-key': API_KEY,
        },
        json={
            'tokenAddress': token_address,
            'walletAddress': wallet,
            'ethAmount': eth_amount,
            'slippageBps': slippage,
        }
    )
    return response.json()

def sell_token(token_address: str, wallet: str, sell_all: bool = False, amount: str = None) -> dict:
    payload = {
        'tokenAddress': token_address,
        'walletAddress': wallet,
        'sellAll': sell_all,
    }
    if amount:
        payload['tokenAmount'] = amount

    response = requests.post(
        f'{BASE_URL}/token/sell',
        headers={
            'Content-Type': 'application/json',
            'x-api-key': API_KEY,
        },
        json=payload
    )
    return response.json()

# Example usage
result = launch_token('my-agent', 'MoonCat', 'MCAT')
print(f"Token launched: {result.get('txHash')}")

Node.js

const API_KEY = process.env.CLAWLAUNCH_API_KEY;
const BASE_URL = 'https://www.clawlaunch.fun/api/v1';

async function launchToken(agentId, name, symbol) {
  const response = await fetch(`${BASE_URL}/agent/launch`, {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'x-api-key': API_KEY,
    },
    body: JSON.stringify({ agentId, name, symbol }),
  });
  return response.json();
}

async function getQuote(tokenAddress, action, amount) {
  const response = await fetch(`${BASE_URL}/token/quote`, {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'x-api-key': API_KEY,
    },
    body: JSON.stringify({ tokenAddress, action, amount }),
  });
  return response.json();
}

async function buyToken(tokenAddress, walletAddress, ethAmount, slippageBps = 200) {
  const response = await fetch(`${BASE_URL}/token/buy`, {
    method: 'POST',
    headers: {
   

---

*Content truncated.*

seedream-image-gen

openclaw

Generate images via Seedream API (doubao-seedream models). Synchronous generation.

2259

ffmpeg-cli

openclaw

Comprehensive video/audio processing with FFmpeg. Use for: (1) Video transcoding and format conversion, (2) Cutting and merging clips, (3) Audio extraction and manipulation, (4) Thumbnail and GIF generation, (5) Resolution scaling and quality adjustment, (6) Adding subtitles or watermarks, (7) Speed adjustment (slow/fast motion), (8) Color correction and filters.

6623

context-optimizer

openclaw

Advanced context management with auto-compaction and dynamic context optimization for DeepSeek's 64k context window. Features intelligent compaction (merging, summarizing, extracting), query-aware relevance scoring, and hierarchical memory system with context archive. Logs optimization events to chat.

3622

a-stock-analysis

openclaw

A股实时行情与分时量能分析。获取沪深股票实时价格、涨跌、成交量,分析分时量能分布(早盘/尾盘放量)、主力动向(抢筹/出货信号)、涨停封单。支持持仓管理和盈亏分析。Use when: (1) 查询A股实时行情, (2) 分析主力资金动向, (3) 查看分时成交量分布, (4) 管理股票持仓, (5) 分析持仓盈亏。

9121

himalaya

openclaw

CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).

7921

garmin-connect

openclaw

Syncs daily health and fitness data from Garmin Connect into markdown files. Provides sleep, activity, heart rate, stress, body battery, HRV, SpO2, and weight data.

7321

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318398

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

451339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.