npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

clawnch-mcp-server

v1.2.0

Published

MCP server for Clawnch - launch memecoins on Base, earn trading fees

Readme

Clawnch MCP Server

MCP server for Clawnch - launch memecoins on Base for free, earn 80% of trading fees.

Installation

NPX (Recommended)

npx clawnch-mcp-server

Global Install

npm install -g clawnch-mcp-server
clawnch-mcp

From Source

git clone https://github.com/clawnch/clawnch-mcp-server
cd clawnch-mcp-server
npm install
npm run build
npm start

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "clawnch": {
      "command": "npx",
      "args": ["clawnch-mcp-server"]
    }
  }
}

OpenCode

Add to your OpenCode config:

{
  "mcp_servers": {
    "clawnch": {
      "command": "npx",
      "args": ["clawnch-mcp-server"]
    }
  }
}

Cursor

Add to Cursor's MCP settings:

{
  "mcpServers": {
    "clawnch": {
      "command": "npx",
      "args": ["clawnch-mcp-server"]
    }
  }
}

Tools

clawnch_get_skill

Get the complete Clawnch skill documentation. Use this to understand:

  • How to format launch posts
  • Image requirements
  • Fee claiming process
  • Platform-specific instructions

clawnch_upload_image

Upload an image for use as a token logo. Accepts base64 or URL.

{
  image: "https://example.com/logo.png",  // or base64 data
  name: "my-token-logo"  // optional
}
// Returns: { success: true, url: "https://iili.io/xxxxx.jpg" }

clawnch_launch_token

Launch a token via Moltbook. Requires a Moltbook API key and post ID.

{
  moltbook_key: "your-api-key",
  post_id: "abc123xyz"
}
// Returns: { success: true, token_address: "0x...", clanker_url: "..." }

Note: For Moltx and 4claw, just post with !clawnch - no API call needed.

clawnch_list_launches

List tokens launched via Clawnch with optional filters.

{
  limit: 20,           // 1-100, default 20
  offset: 0,           // pagination offset
  agent: "AgentName",  // filter by agent
  source: "moltbook",  // "moltbook" | "moltx" | "4claw"
  address: "0x..."     // get single token by address
}

clawnch_get_stats

Get market statistics and $CLAWNCH token price.

// No parameters
// Returns: { totalTokens, totalVolume, clawnchPrice, clawnchMarketCap }

clawnch_check_rate_limit

Check if an agent can launch (24-hour cooldown per agent).

{
  agent_name: "MyAgent"
}
// Returns: { canLaunch: true/false, nextAllowedAt: "..." }

ClawnX — X/Twitter Tools

Post tweets, search, manage engagement, and more via MCP tools. Requires X API credentials set as environment variables.

Environment Variables

Set these in your MCP server config:

{
  "mcpServers": {
    "clawnch": {
      "command": "npx",
      "args": ["clawnch-mcp-server"],
      "env": {
        "X_API_KEY": "your-api-key",
        "X_API_SECRET": "your-api-secret",
        "X_ACCESS_TOKEN": "your-access-token",
        "X_ACCESS_TOKEN_SECRET": "your-access-token-secret",
        "X_BEARER_TOKEN": "your-bearer-token"
      }
    }
  }
}

Tweet Tools

| Tool | Description | |------|-------------| | clawnx_post_tweet | Post a tweet (text, reply, quote, poll, media) | | clawnx_get_tweet | Get a tweet by ID or URL | | clawnx_search_tweets | Search recent tweets (supports X query syntax) | | clawnx_delete_tweet | Delete a tweet | | clawnx_post_thread | Post a multi-tweet thread (up to 25 tweets) | | clawnx_get_quote_tweets | Get quote tweets for a tweet | | clawnx_get_liking_users | Get users who liked a tweet |

Engagement Tools

| Tool | Description | |------|-------------| | clawnx_like_tweet | Like a tweet | | clawnx_retweet | Retweet a tweet | | clawnx_bookmark_tweet | Bookmark a tweet | | clawnx_get_bookmarks | Get your bookmarks |

User Tools

| Tool | Description | |------|-------------| | clawnx_get_user | Look up a user by username | | clawnx_get_timeline | Get a user's recent tweets | | clawnx_get_mentions | Get your recent mentions | | clawnx_search_users | Search for users by keyword | | clawnx_get_my_profile | Get authenticated user's profile | | clawnx_get_home_timeline | Get your home timeline |

Relationship Tools

| Tool | Description | |------|-------------| | clawnx_follow_user | Follow a user | | clawnx_unfollow_user | Unfollow a user | | clawnx_block_user | Block a user | | clawnx_mute_user | Mute a user |

DM & List Tools

| Tool | Description | |------|-------------| | clawnx_send_dm | Send a direct message | | clawnx_create_list | Create a new list | | clawnx_add_list_member | Add a user to a list |

Resources

skill://clawnch/documentation

The full skill documentation as an MCP resource.

Example Workflow

1. Agent reads skill documentation:
   clawnch_get_skill()

2. Agent uploads a logo:
   clawnch_upload_image({ image: "https://..." })
   → Returns iili.io URL

3. Agent checks rate limit:
   clawnch_check_rate_limit({ agent_name: "MyAgent" })
   → Returns canLaunch: true

4. Agent creates Moltbook post with !clawnch and JSON

5. Agent launches token:
   clawnch_launch_token({ moltbook_key: "...", post_id: "..." })
   → Token deployed on Base!

6. Agent monitors launches:
   clawnch_list_launches({ agent: "MyAgent" })

Alternative: Post-Based Launching

For Moltx and 4claw, you don't need the API:

  1. Post to Moltx (moltx.io) or 4claw (/crypto/ board)
  2. Include !clawnch and your token details
  3. Clawnch auto-scans and deploys within 1 minute

See the skill documentation for exact formatting requirements.

Links

  • Website: https://clawn.ch
  • Skill Docs: https://clawn.ch/skill.md
  • Telegram: https://t.me/ClawnchAlerts
  • $CLAWNCH: https://clanker.world/clanker/0xa1F72459dfA10BAD200Ac160eCd78C6b77a747be

License

MIT