vibecoin

Launch your vibe coded app on Ethereum via Claude Code

Installation

Add the Vibecoin MCP to your Claude Code configuration:

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

Or add manually to your ~/.claude.json:

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

Restart Claude Code after adding the configuration.

$VIBE Token

The official meme platform token. Originally launched as the Frenpet token on Base, now bridged to Ethereum mainnet.

Ethereum CA

0xD34a99Bc0f67aE1bbd63C660e6d0b0dd03E263B7

Base CA

0xFF0C532FDB8Cd566Ae169C1CB157ff2Bdc83E105

On mainnet there are no taxes just regular univ3 1% pool

You can arbitrage via layerzero bridging back and forth but no good UIs yet

How it works

Just tell Claude Code to "launch my vibe coded app on Ethereum" or simply "launch a token" — that's it.

Claude will create a wallet on your local machine, encrypted with a password you choose. This wallet is yours — it receives your trading fees automatically.

Then it deploys your token to Ethereum mainnet with a bonding curve. Think of it like an open prediction market on your app — people can buy in early if they believe in what you're building, and you earn 1% of every trade forever.

It's also kind of anonymous — each project gets a fresh wallet, so there's no link to your identity unless you choose to share it.

Available tools

ToolDescription
walletCreate wallet, check balance, transfer ETH, collect fees
launchDeploy a new coin to Ethereum mainnet
listingsBrowse all launched coins
my-feesView your earned trading fees
infoPlatform info, tokenomics, contracts

Tokenomics

Total supply1,000,000,000 (1 billion)
Creator allocation49% (vested over 6 months)
Public pool51% (tradeable immediately)

Bonding curve

  • Phase 1: First 250M tokens at $0.01 each
  • Phase 2: Remaining tokens on sqrt bonding curve

Tokens are traded via Uniswap v4 with a custom bonding curve hook.

Fees

Launch feeFree
Trading fee2% per swap

Fee distribution

Creator (you)1%
Platform1%

You earn 1% of every trade on your coin, forever. Fees can be collected gaslessly through the MCP.

API

Build on top of Vibecoin. Our public GraphQL API provides access to all pool and token data.

Endpoint

https://vibecoin.up.railway.app/graphql

Example: Get all tokens

query GetTokens {
  tokens(limit: 50, orderBy: "marketCapUsd", orderDirection: "desc") {
    items {
      id
      name
      symbol
      marketCapUsd
      totalVolumeUsd
      currentPriceUsd
      description
      url
      github
      poolHooks
    }
  }
}

Example: Get a specific token

query GetToken {
  token(id: "0x...tokenAddress") {
    id
    name
    symbol
    marketCapUsd
    currentPriceUsd
    totalVolumeUsd
  }
}

Available fields

FieldDescription
idToken contract address
nameToken name
symbolToken symbol
marketCapUsdCurrent market cap in USD
currentPriceUsdCurrent token price in USD
totalVolumeUsdTotal trading volume in USD
poolHooksUniswap v4 hook address for the pool
descriptionProject description (if provided)
urlProject website (if provided)
githubGitHub repository (if provided)

Use this API to build dashboards, trading bots, analytics tools, or integrate Vibecoin data into your own applications.