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

@iflow-mcp/surfer77-vibecoins-mcp

v1.0.0

Published

MCP server for launching coins on Ethereum via Vibecoins

Readme

Vibecoins MCP

An MCP (Model Context Protocol) server that lets AI assistants launch coins on Ethereum and manage crypto wallets.

What is this?

This server connects AI assistants (like Claude) to the Vibecoins platform, enabling:

  • Wallet Management - Create encrypted Ethereum wallets, check balances, transfer ETH
  • Coin Launching - Deploy ERC-20 tokens on Ethereum with built-in liquidity
  • Fee Collection - Earn 1% of every trade on coins you launch, forever
  • Listings - Browse and search all launched coins

Installation

With Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "vibecoin": {
      "command": "npx",
      "args": ["github:surfer77/vibecoin-mcp"]
    }
  }
}

With Claude Code

claude mcp add vibecoin -- npx github:surfer77/vibecoin-mcp

Manual Installation

git clone https://github.com/surfer77/vibecoin-mcp.git
cd vibecoin-mcp
npm install
npm start

Then add to Claude Desktop config:

{
  "mcpServers": {
    "vibecoin": {
      "command": "node",
      "args": ["/path/to/vibecoin-mcp/index.js"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | info | Platform overview, tokenomics, fees, and contract addresses | | wallet | Create wallet, check balance, transfer ETH, collect fees | | launch | Deploy a new coin on Ethereum mainnet | | my-fees | View earnings from your launched coins | | listings | Browse all coins, search, or filter by top market cap |

How Coin Launches Work

  1. Create a wallet - Your private key is encrypted locally with a password
  2. Launch your coin - Pick a name and symbol (e.g., "DogeCoin", "DOGE")
  3. Automatic deployment - 1 billion tokens created with Uniswap v4 liquidity
  4. Earn forever - You get 1% of every trade on your coin

Token Distribution

  • 49% to you (vested over 6 months)
  • 51% to public trading pool

Environment Variables (Optional)

All defaults are pre-configured. You only need these if you want to override:

| Variable | Default | Description | |----------|---------|-------------| | LAUNCHER_API_URL | https://vibecoin.up.railway.app | Vibecoins API endpoint | | RPC_URL | Sepolia RPC | Ethereum RPC endpoint |

Security

  • Wallets are encrypted with AES-256
  • Private keys never leave your machine
  • Passwords are never stored or transmitted
  • See SECURITY.md for details

License

MIT