Installation
Add the Vibecoin MCP to your Claude Code configuration:
claude mcp add vibecoins -- npx github:surfer77/vibecoins-mcpOr 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.
0xD34a99Bc0f67aE1bbd63C660e6d0b0dd03E263B7
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
| Tool | Description |
|---|---|
wallet | Create wallet, check balance, transfer ETH, collect fees |
launch | Deploy a new coin to Ethereum mainnet |
listings | Browse all launched coins |
my-fees | View your earned trading fees |
info | Platform info, tokenomics, contracts |
Tokenomics
| Total supply | 1,000,000,000 (1 billion) |
| Creator allocation | 49% (vested over 6 months) |
| Public pool | 51% (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 fee | Free |
| Trading fee | 2% per swap |
Fee distribution
| Creator (you) | 1% |
| Platform | 1% |
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/graphqlExample: 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
| Field | Description |
|---|---|
id | Token contract address |
name | Token name |
symbol | Token symbol |
marketCapUsd | Current market cap in USD |
currentPriceUsd | Current token price in USD |
totalVolumeUsd | Total trading volume in USD |
poolHooks | Uniswap v4 hook address for the pool |
description | Project description (if provided) |
url | Project website (if provided) |
github | GitHub repository (if provided) |
Use this API to build dashboards, trading bots, analytics tools, or integrate Vibecoin data into your own applications.