Mint Club V2

Created By
H-14 months ago
Trade bonding curve tokens on Base via Mint Club V2. Buy, sell, swap (smart routing via bonding curves + Uniswap V3/V4), create tokens, check prices and balances. 10 tools for AI-powered DeFi on Base.
Overview

Mint Club

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:

PackageDescriptionInstall
cli/mc command-line interfacenpm i -g mint.club-cli
mcp/MCP server for Claude, Cursor, etc.npx mintclub-mcp
agent-skills/Agent skill for OpenClawclawhub install mintclub
eliza-plugin/ElizaOS pluginPR #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

Full agent skill docs


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

RegistryLink
npm (CLI)mint.club-cli
npm (MCP)mintclub-mcp
MCP Registryio.github.h1-hunt/mintclub
mcp.somint-club
ClawHubmintclub
ElizaOSPlugin PR #6498
🌐 Appmint.club
📖 Docsdocs.mint.club
📦 SDKmint.club-v2-sdk
🔗 ContractsSteemhunt/mint.club-v2-contract
💬 CommunityOnChat
🐦 Twitter@MintClubPro
🏗️ Hunt Townhunt.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"
      }
    }
  }
}
Project Info
Created At
4 months ago
Updated At
4 months ago
Author Name
H-1
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Bring your real authenticated browser session to AI coding agents. Local-first MCP server + Chrome MV3 extension. No cloud. No telemetry.
@Cubenest

peek records the user's actual logged-in browser (DOM via rrweb, console events, network metadata, optional response bodies via opt-in Deep capture) through a Chrome MV3 extension. The extension ships events through a native-messaging stdio bridge to a local MCP server (peek-mcp), which persists them to a SQLite database at ~/.peek/sessions.db. AI coding agents (Claude Code, Cursor, Cline, Windsurf) read sessions from the database via 10 MCP tools: Tool What it does list_recent_sessions List recently recorded sessions (id, origin, ts, event count). get_session_summary LLM-readable narrative summary of a session. get_session_console_errors Console errors recorded in a session. get_session_network_errors Failed/notable network requests in a session. get_user_action_before_error Last N user actions before a console error. generate_playwright_repro Generate a runnable Playwright test from a session. get_dom_snapshot Reconstruct the DOM at a given timestamp. query_dom_history Timeline of attribute/text changes for a selector. request_authorization Side-panel consent for write actions (Level 3). execute_action Dispatch a UI action (gated by permission level + destructive blocklist). Why local-first matters Every other "browser session for AI" tool ships to a vendor cloud. peek's SQLite + extension live on the user's machine — no remote endpoints, no telemetry. The privacy policy (docs/peek/PRIVACY_POLICY.md) is the source of truth. Install # 1. Add the MCP server to Claude Code claude mcp add peek -- npx -y @peekdev/mcp # 2. Install the Chrome extension from the Chrome Web Store # (link added once the CWS listing is approved)

a day ago
Crevio

2 days ago