Token Tool MCP Server

Bitbond TokenTool MCP — deploy and manage ERC20 tokens via AI agents

Local serverstdio

What is the Token Tool MCP MCP server?

Connect Token Tool MCP to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Bitbond TokenTool MCP — deploy and manage ERC20 tokens via AI agents. The token tool mcp mcp server is what makes that connection.

What the server does

Built on Bitbond TokenTool — 8,300+ deployments, CertiK-audited contracts, compliance built in.

Installation

token-tool-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

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

  • deploy_token — Deploy a CertiK-audited ERC-20 with optional compliance features
  • estimate_cost — Quote deployment cost (gas + fee) before committing funds
  • list_chains — List all 12 supported networks with chain IDs and aliases
  • get_token_info — Live on-chain token state — name, symbol, supply, paused status, owner
  • list_deployed_tokens — Full local deployment registry
  • mint_tokens — Mint additional supply to any address
  • burn_tokens — Permanently destroy tokens
  • pause_token — Emergency stop — halt all transfers immediately
  • unpause_token — Resume transfers after a pause
  • transfer_tokens — Send tokens to any address
  • get_wallet_info — Deployer wallet address and native balance
  • add_to_whitelist — Add addresses to token whitelist (batch supported)

Credentials and setup notes

Configuration is passed through the environment: BITBOND_PRIVATE_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.

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 Token Tool MCP.
  • 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.

Where it fits

Among the cloud and infrastructure options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Token Tool MCP's toolset — deploy_token, estimate_cost, list_chains and 11 more — is a fair guide to whether it matches your workflow. It is maintained by bitbond; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
deploy_tokenDeploy a CertiK-audited ERC-20 with optional compliance features
estimate_costQuote deployment cost (gas + fee) before committing funds
list_chainsList all 12 supported networks with chain IDs and aliases
get_token_infoLive on-chain token state — name, symbol, supply, paused status, owner
list_deployed_tokensFull local deployment registry
mint_tokensMint additional supply to any address
burn_tokensPermanently destroy tokens
pause_tokenEmergency stop — halt all transfers immediately
unpause_tokenResume transfers after a pause
transfer_tokensSend tokens to any address
get_wallet_infoDeployer wallet address and native balance
add_to_whitelistAdd addresses to token whitelist (batch supported)
remove_from_whitelistRemove addresses from token whitelist
get_whitelistView whitelist status and all whitelisted addresses

How to install the Token Tool MCP MCP server

{
  "mcpServers": {
    "token-tool": {
      "command": "npx",
      "args": ["-y", "token-tool-mcp"],
      "env": {
        "BITBOND_PRIVATE_KEY": "0x..."
      }
    }
  }
}

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

Configuration

VariableDescriptionRequired
BITBOND_PRIVATE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Token Tool MCP to deploy token.
  • Use Token Tool MCP to estimate cost.
  • Use Token Tool MCP to list chains.

Frequently asked questions

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