Mint Club V2
@H-1
Mint Club V2 โ AI Tools
Trade, create, and manage bonding curve tokens on Base โ from the terminal, AI assistants, or autonomous agents.
๐ CLI npm
๐ MCP npm
๐ MIT
What is Mint Club V2?
Mint Club V2 is a permissionless bonding curve protocol on Base. Launch tokens backed by any reserve asset (HUNT, ETH, USDC) with automated pricing โ no liquidity pool required. The protocol handles minting, burning, and price discovery through smart contracts.
This monorepo provides AI-ready tooling for the protocol:
| Package | Description | Install |
|---|---|---|
cli/ | mc command-line interface | npm i -g mint.club-cli |
mcp/ | MCP server for Claude, Cursor, etc. | npx mintclub-mcp |
agent-skills/ | Agent skill for OpenClaw | clawhub install mintclub |
eliza-plugin/ | ElizaOS plugin | PR #6498 |
Quick Start
CLI
npm install -g mint.club-cli
mc wallet --generate # Create a wallet
mc price SIGNET # Check token price
mc swap -i ETH -o HUNT -a 0.01 # Swap via Uniswap V3/V4
mc zap-buy SIGNET -i ETH -a 0.01 # Buy with any token
mc create -n "MyToken" -s MYT -r HUNT -x 1000000 --curve exponential
โ Full CLI docs
MCP Server
Add to Claude Desktop / Cursor config:
{
"mcpServers": {
"mintclub": {
"command": "npx",
"args": ["-y", "mintclub-mcp"],
"env": { "PRIVATE_KEY": "0x..." }
}
}
}
10 tools: token_info ยท token_price ยท wallet_balance ยท buy_token ยท sell_token ยท swap ยท zap_buy ยท zap_sell ยท send_token ยท create_token
โ Full MCP docs
Agent Skill
clawhub install mintclub
How It Works
User / AI Agent
โ
โโโ CLI โโโโโโโโโโโโ mc swap -i ETH -o HUNT -a 0.01
โโโ MCP Server โโโโโ tool call โ mc CLI โ transaction
โโโ Agent Skill โโโโ reads SKILL.md โ runs mc CLI
โโโ ElizaOS Plugin โ action handler โ Bun.spawn(mc)
โ
โผ
mc CLI (mint.club-cli)
โ
โโโ Bonding Curve โโ MCV2_Bond contract (buy/sell/create)
โโโ Zap โโโโโโโโโโโโ MCV2_ZapV2 (swap + bond in one tx)
โโโ Uniswap โโโโโโโโ UniversalRouter V2 (V3 + V4 pools)
โโโ Pricing โโโโโโโโ 1inch Spot Price Aggregator (USD)
โ
โผ
Base L2 (Chain 8453)
Smart swap routing: mc swap auto-detects the optimal path โ bonding curve buy/sell for Mint Club tokens, Uniswap V3/V4 for everything else, or zap (swap + bond) for cross-token purchases.
Directory Listings
| Registry | Link |
|---|---|
| npm (CLI) | mint.club-cli |
| npm (MCP) | mintclub-mcp |
| MCP Registry | io.github.h1-hunt/mintclub |
| mcp.so | mint-club |
| ClawHub | mintclub |
| ElizaOS | Plugin PR #6498 |
Links
| ๐ App | mint.club |
| ๐ Docs | docs.mint.club |
| ๐ฆ SDK | mint.club-v2-sdk |
| ๐ Contracts | Steemhunt/mint.club-v2-contract |
| ๐ฌ Community | OnChat |
| ๐ฆ Twitter | @MintClubPro |
| ๐๏ธ Hunt Town | hunt.town |
License
MIT โ built with ๐๏ธ by Hunt Town
Server Config
{
"mcpServers": {
"mintclub": {
"command": "npx",
"args": [
"-y",
"mintclub-mcp"
],
"env": {
"PRIVATE_KEY": "your-wallet-private-key"
}
}
}
}