Ponzu MCP Server

ERC-20 token launchpad on Ethereum — deploy, presale, swap, and farm via AI agents

Local serverstdioTypeScript

What is the Ponzu MCP server?

Connect Ponzu to Claude, Cursor or any other MCP client and it stops being a tab you switch to. ERC-20 token launchpad on Ethereum — deploy, presale, swap, and farm via AI agents. The ponzu mcp server is what makes that connection.

What the server does

MCP server for Ponzu — deploy tokens, buy presales, swap, and farm on Ethereum via AI agents.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • ponzu_get_skill — Fetch full Ponzu documentation (SKILL.md)
  • ponzu_get_addresses — Get protocol contract addresses for configured network
  • ponzu_calc_pricing — Calculate presale pricing curve from target ETH raise
  • ponzu_deploy — Deploy full 9-contract token system in one transaction
  • ponzu_get_presale_info — Read presale state (tokens available, launched, etc.)
  • ponzu_presale_buy — Buy tokens in a presale
  • ponzu_presale_refund — Refund presale tokens (20% penalty)
  • ponzu_trigger_launch — Trigger DEX launch when presale sells out
  • ponzu_claim_tokens — Claim vested tokens from presale
  • ponzu_claim_eth — Claim ETH rewards from presale
  • ponzu_swap_eth_for_tokens — Buy tokens on PonzuSwap DEX
  • ponzu_swap_tokens_for_eth — Sell tokens on PonzuSwap DEX

Credentials and setup notes

Configuration is passed through the environment: PONZU_PRIVATE_KEY, PONZU_RPC_URL, PONZU_NETWORK, YOUR_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Where it fits

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Ponzu's toolset — ponzu_get_skill, ponzu_get_addresses, ponzu_calc_pricing and 11 more — is a fair guide to whether it matches your workflow. It is maintained by PonzuTech; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ponzu.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
ponzu_get_skillFetch full Ponzu documentation (SKILL.md)
ponzu_get_addressesGet protocol contract addresses for configured network
ponzu_calc_pricingCalculate presale pricing curve from target ETH raise
ponzu_deployDeploy full 9-contract token system in one transaction
ponzu_get_presale_infoRead presale state (tokens available, launched, etc.)
ponzu_presale_buyBuy tokens in a presale
ponzu_presale_refundRefund presale tokens (20% penalty)
ponzu_trigger_launchTrigger DEX launch when presale sells out
ponzu_claim_tokensClaim vested tokens from presale
ponzu_claim_ethClaim ETH rewards from presale
ponzu_swap_eth_for_tokensBuy tokens on PonzuSwap DEX
ponzu_swap_tokens_for_ethSell tokens on PonzuSwap DEX
ponzu_zap_ethConvert ETH into LP tokens in one transaction
ponzu_farm_stakeStake LP tokens in a farm

How to install the Ponzu MCP server

{
  "mcpServers": {
    "ponzu": {
      "command": "npx",
      "args": ["-y", "@ponzu_app/mcp"],
      "env": {
        "PONZU_PRIVATE_KEY": "0x...",
        "PONZU_RPC_URL": "https://eth-mainnet.g.alchemy.com/v2/YOUR_KEY",
        "PONZU_NETWORK": "mainnet"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PONZU_PRIVATE_KEYCredential the server authenticates with.Yes
PONZU_RPC_URLEndpoint or connection string the server talks to.Yes
PONZU_NETWORKConfiguration value read at startup.Optional
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Ponzu to ponzu get skill.
  • Use Ponzu to ponzu get addresses.
  • Use Ponzu to ponzu calc pricing.

Frequently asked questions

It connects Ponzu to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (ponzu_get_skill, ponzu_get_addresses, ponzu_calc_pricing, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ponzu directly.