MCP server intelligence profile

TokenTool MCP Server

Enables AI agents to deploy and manage compliant tokens across multiple blockchains (EVM, Solana, Stellar) using natural language, with features like whitelist, blacklist, and pausable contracts

Local OnlyOfficial distributionbitbond
Verified cleanNpm · 1.1.1

Our scanner tested version 1.1.1 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install token-tool-mcp from npm

Version 1.1.1 declares 1 executable entrypoint.

npm install --save-exact token-tool-mcp@1.1.1
npx -y -p token-tool-mcp@1.1.1 token-tool-mcp
MCP client configuration example
{
  "mcpServers": {
    "token-tool-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "token-tool-mcp@1.1.1",
        "token-tool-mcp"
      ]
    }
  }
}

Identity

Canonical slugtokentool-mcp-35ce5892DeploymentLocal Only
Canonical packagenpm:token-tool-mcpRepositorybitbond/token-tool-mcp
First publishedLatest release
Last security verificationAug 20, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmtoken-tool-mcp1.1.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmtoken-tool-mcp1.1.1CurrentSep 5, 202611 toolsSucceeded · 0 resources · 0 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-25694670714a7e52e64597a566734de3d649c7582be03e34f0e82626b623fdbfa57
Scannermcp-proof-engine 0.1.0Scan completedAug 20, 2026
Security rating34 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "token-tool-mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]
0Proven
1204Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
bitbond-token-toolServer-reported name
1Capability groups
Aug 18, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
burn_tokensBurn/destroy tokens from your balance (only works if token was deployed with burnable=true)
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address"
    },
    "amount": {
      "type": "string",
      "description": "Amount to burn (human-readable)"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "amount",
    "chain"
  ]
}
deploy_tokenDeploy a new token using Bitbond Token Tool. Supports EVM chains (ERC20, CertiK-audited), Solana (SPL tokens), and Stellar (assets).
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Token name (e.g. \"My Token\")"
    },
    "symbol": {
      "type": "string",
      "description": "Token symbol/ticker (e.g. \"MTK\")"
    },
    "supply": {
      "type": "string",
      "description": "Initial token supply as a number (e.g. \"1000000\")"
    },
    "chain": {
      "type": "string",
      "description": "Chain to deploy on (e.g. \"ethereum\", \"polygon\", \"base\", \"sepolia\")"
    },
    "decimals": {
      "default": "18",
      "description": "Token decimals (default: 18)",
      "type": "string"
    },
    "mintable": {
      "description": "Allow minting more tokens after deployment",
      "type": "boolean"
    },
    "burnable": {
      "description": "Allow burning/destroying tokens",
      "type": "boolean"
    },
    "pausable": {
      "description": "Allow pausing all transfers (emergency stop)",
      "type": "boolean"
    },
    "whitelist": {
      "description": "Enable whitelist — only approved addresses can hold tokens",
      "type": "boolean"
    },
    "blacklist": {
      "description": "Enable blacklist — block specific addresses",
      "type": "boolean"
    },
    "force_transfer": {
      "description": "Allow owner to force-transfer tokens (compliance)",
      "type": "boolean"
    },
    "document_uri": {
      "description": "URI to legal document or prospectus",
      "type": "string"
    },
    "max_supply": {
      "description": "Maximum total supply cap",
      "type": "string"
    },
    "discount_code": {
      "description": "Bitbond discount code if you have one",
      "type": "string"
    }
  },
  "required": [
    "name",
    "symbol",
    "supply",
    "chain"
  ]
}
estimate_costGet the cost to deploy a token on a given chain before committing
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain name (e.g. \"ethereum\", \"polygon\", \"base\", \"sepolia\")"
    },
    "mintable": {
      "description": "Include mintable feature",
      "type": "boolean"
    },
    "burnable": {
      "description": "Include burnable feature",
      "type": "boolean"
    },
    "pausable": {
      "description": "Include pausable feature",
      "type": "boolean"
    }
  },
  "required": [
    "chain"
  ]
}
get_token_infoGet live on-chain info for any token contract (name, symbol, supply, paused state, owner)
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address (0x...)"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "chain"
  ]
}
get_wallet_infoGet the deployer wallet address and balance on a given chain
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain to check balance on"
    }
  },
  "required": [
    "chain"
  ]
}
list_chainsList all supported blockchain networks for token deployment
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
list_deployed_tokensList all tokens deployed via this MCP server (local registry)
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "chain": {
      "description": "Filter by chain (optional)",
      "type": "string"
    }
  }
}
mint_tokensMint additional tokens (only works if token was deployed with mintable=true)
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address"
    },
    "to": {
      "type": "string",
      "description": "Address to receive minted tokens"
    },
    "amount": {
      "type": "string",
      "description": "Amount to mint (human-readable)"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "to",
    "amount",
    "chain"
  ]
}
pause_tokenPause all token transfers — emergency stop (only works if pausable=true)
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "chain"
  ]
}
transfer_tokensTransfer tokens from your wallet to another address
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address"
    },
    "to": {
      "type": "string",
      "description": "Recipient wallet address"
    },
    "amount": {
      "type": "string",
      "description": "Amount to transfer (human-readable, e.g. \"1000\")"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "to",
    "amount",
    "chain"
  ]
}
unpause_tokenResume token transfers after a pause
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "contract_address": {
      "type": "string",
      "description": "Token contract address"
    },
    "chain": {
      "type": "string",
      "description": "Chain the token is on"
    }
  },
  "required": [
    "contract_address",
    "chain"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

TokenTool MCP Server questions

How do I install TokenTool MCP Server?

Install the selected package version with: npm install --save-exact token-tool-mcp@1.1.1

What tools does TokenTool MCP Server provide?

TokenTool MCP Server exposed 11 tools during independent protocol observation, including burn_tokens, deploy_token, estimate_cost, get_token_info, get_wallet_info, list_chains, list_deployed_tokens, mint_tokens, and others.

Is TokenTool MCP Server secure?

Our scanner tested version 1.1.1 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.