Base Gasless Deploy MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add -e "DEPLOYER_PRIVATE_KEY=${DEPLOYER_PRIVATE_KEY}" base-gasless-deploy -- npx -y base-gasless-deploy-mcp
Required:DEPLOYER_PRIVATE_KEY+ 3 optional
README.md

Deploy ERC-20 tokens on Base with zero gas using CDP Paymaster.

base-gasless-deploy-mcp

MCP server for deploying ERC-20 tokens on Base with zero gas using CDP Paymaster. Falls back to normal gas if no paymaster is configured.

Install

npx -y base-gasless-deploy-mcp

Configuration

Add to your MCP client config (e.g. Claude Desktop):

{
  "mcpServers": {
    "base-gasless-deploy": {
      "command": "npx",
      "args": ["-y", "base-gasless-deploy-mcp"],
      "env": {
        "DEPLOYER_PRIVATE_KEY": "0x...",
        "PAYMASTER_URL": "https://api.developer.coinbase.com/rpc/v1/base/..."
      }
    }
  }
}

Environment Variables

Variable Required Description
DEPLOYER_PRIVATE_KEY Yes (write ops) Private key for deploying/transferring
PAYMASTER_URL No CDP Paymaster RPC endpoint for gasless transactions
CDP_PAYMASTER_URL No Alias for PAYMASTER_URL
RPC_URL No Base RPC (default: https://mainnet.base.org)

Tools

deploy_gasless_token

Deploy an ERC-20 token on Base. Uses paymaster for zero gas when configured.

Params:

  • name (string) - Token name
  • symbol (string) - Token symbol
  • supply (string, default "1000000") - Total supply in human units
  • owner_address (string) - Address that receives all tokens

get_token_info

Get info about a deployed token (name, symbol, supply, owner balance).

Params:

  • token_address (string) - Token contract address

estimate_gas_savings

Show how much gas was saved by using the paymaster.

Params:

  • token_address (string) - Token contract address

list_deployed_tokens

List all tokens deployed by an address in the current session.

Params:

  • deployer_address (string) - Deployer wallet address

transfer_tokens

Transfer ERC-20 tokens gaslessly via paymaster.

Params:

  • token_address (string) - Token contract address
  • to (string) - Recipient address
  • amount (string) - Amount in human units

How It Works

  1. Pre-compiled ERC-20 bytecode is embedded in the server (no Solidity compiler needed at runtime)
  2. When PAYMASTER_URL is set, transactions are routed through the CDP Paymaster for gas sponsorship
  3. If the paymaster fails or isn't configured, transactions fall back to normal gas from the deployer wallet
  4. All deployments are tracked in-memory for gas savings reporting

Related MCP Servers

Package Tools What it does
obsd-launchpad-mcp 14 Deploy tokens, trade, earn OBSD
base-security-scanner-mcp 8 Scan contracts for vulnerabilities
base-price-oracle-mcp 7 On-chain price feeds from DEX pools
base-multi-wallet-mcp 8 Coordinated multi-wallet trading
base-gasless-deploy-mcp 5 Gasless ERC-20 token deployment
base-flash-arb-mcp 7 Detect arbitrage opportunities
base-token-sniper-mcp 5 Discover & trade new launches
base-wallet-toolkit-mcp 7 Wallet balances, gas, tokens
base-contract-reader-mcp 6 Read any smart contract (free)
create-mcp-server-cli - Scaffold a new MCP server

License

MIT

Tools (5)

deploy_gasless_tokenDeploy an ERC-20 token on Base using paymaster for zero gas.
get_token_infoGet info about a deployed token including name, symbol, supply, and owner balance.
estimate_gas_savingsShow how much gas was saved by using the paymaster.
list_deployed_tokensList all tokens deployed by an address in the current session.
transfer_tokensTransfer ERC-20 tokens gaslessly via paymaster.

Environment Variables

DEPLOYER_PRIVATE_KEYrequiredPrivate key for deploying/transferring
PAYMASTER_URLCDP Paymaster RPC endpoint for gasless transactions
CDP_PAYMASTER_URLAlias for PAYMASTER_URL
RPC_URLBase RPC (default: https://mainnet.base.org)

Configuration

claude_desktop_config.json
{"mcpServers": {"base-gasless-deploy": {"command": "npx", "args": ["-y", "base-gasless-deploy-mcp"], "env": {"DEPLOYER_PRIVATE_KEY": "0x...", "PAYMASTER_URL": "https://api.developer.coinbase.com/rpc/v1/base/..."}}}}

Try it

Deploy a new ERC-20 token named 'MyTestToken' with symbol 'MTT' and a supply of 1,000,000 to my wallet address.
Check the current status and balance information for the token at address 0x123...
How much gas did I save by using the paymaster for my last token deployment?
List all the tokens I have deployed during this session.
Transfer 500 tokens from my contract to the address 0xabc...

Frequently Asked Questions

What are the key features of Base Gasless Deploy?

Zero-gas ERC-20 token deployment on Base using CDP Paymaster. Automatic fallback to standard gas if paymaster is unavailable. In-memory tracking of deployments for gas savings reporting. Pre-compiled ERC-20 bytecode for efficient deployment without local compilation.

What can I use Base Gasless Deploy for?

Rapidly prototyping and deploying new tokens on the Base network without needing ETH for gas. Automating token distribution for projects leveraging gasless transaction sponsorship. Auditing gas efficiency and savings for smart contract deployments.

How do I install Base Gasless Deploy?

Install Base Gasless Deploy by running: npx -y base-gasless-deploy-mcp

What MCP clients work with Base Gasless Deploy?

Base Gasless Deploy works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Base Gasless Deploy docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare