Token Minter MCP enables AI assistants to deploy and interact with ERC-20 tokens across multiple blockchain networks. Built by kukapay, it provides tools for deploying custom tokens with configurable parameters, querying token information, checking balances, and transferring tokens. The server leverages ethers.js and a SimpleERC20 smart contract to interact with various EVM-compatible chains including Ethereum, Polygon, BSC, and others. This implementation is particularly valuable for blockchain workflows where users need to create and manage tokens without leaving their conversation interface.
No reviews yet. Be the first to review!
Sign in to join the conversation
Deploys a new ERC-20 token with the specified parameters: name (string), symbol (string), initialSupply (number), decimals (number), chainId (number).
Transfers ERC-20 tokens to a specified address. Parameters: tokenAddress (string), toAddress (string), amount (number), chainId (number).
Retrieves details of a transaction using its hash. Parameters: txHash (string), chainId (number).
Queries the balance of a specific ERC-20 token for the current account. Parameter: tokenAddress (string), chainId (number).
Queries metadata for an ERC-20 token. Parameters: tokenAddress (string), chainId (number).
Checks the native token balance of the current account. Parameter: chainId (number).