Token Minter MCP

Token Minter MCP

MCP server enabling AI agents to mint and manage ERC-20 tokens on 21 blockchains.

17
Stars
13
Forks
17
Watchers
4
Issues
Token Minter MCP is an MCP server that empowers AI agents to deploy and manage ERC-20 tokens across 21 blockchains. It provides tools to create tokens, query metadata, initiate token transfers, and retrieve transaction details. The server also offers interactive prompts to guide token deployment and exposes token metadata via standardized URIs. Built on Node.js, it integrates with EVM networks using Infura and private keys for transaction signing.

Key Features

Deploy ERC-20 tokens with customizable parameters
Query token metadata including name, symbol, decimals, and supply
Initiate and track ERC-20 token transfers
Retrieve transaction details by hash
Check native and ERC-20 token balances
Expose token metadata via standardized URI patterns
Provide interactive deployment guidance via prompts
Support for 21 EVM-compatible blockchains
Node.js and Infura integration for blockchain communication
Configurable through environmental variables

Use Cases

Automating the minting and deployment of new ERC-20 tokens for dAPPs
AI agents programmatically managing token transfers and balances
Real-time querying of blockchain transaction status
Development of user-facing wallets with token creation capabilities
Batch deployment of reward or utility tokens across multiple chains
Service platforms offering token metadata retrieval services
Facilitating educational tools for blockchain operations
Integration with agent platforms requiring on-chain asset creation
Compliance and auditing solutions through automated transaction queries
Enabling non-technical users to create and manage blockchain assets via prompts

README

MseeP.ai Security Assessment Badge

Token Minter MCP

An MCP server providing tools for AI agents to mint ERC-20 tokens, supporting 21 blockchains.

License Node.js Status

Features

  • Deploy new ERC-20 tokens with customizable parameters.
  • Query token metadata (name, symbol, decimals, total supply).
  • Initiate token transfers (returns transaction hash without confirmation).
  • Retrieve transaction details by hash.
  • Check native token balance of the current account.
  • Access token metadata via URI.
  • Interactive prompt for deployment guidance.

Tools

  • deployToken: Deploys a new ERC-20 token (name, symbol, initialSupply, decimals, chainId).
  • transferToken: Transfers ERC-20 tokens (tokenAddress, toAddress, amount, chainId).
  • getTransactionInfo: Retrieves transaction details (txHash, chainId).
  • getTokenBalance: Queries the balance of a specific ERC-20 token for the current account.
  • getTokenInfo: Queries ERC-20 token metadata (tokenAddress, chainId).
  • getBalance: Checks native token balance (chainId).

Resources

  • tokenMetadata: Exposes token metadata via token://{chainId}/{address}.

Prompts

  • deployTokenGuide: Guides token deployment with required parameters (chainId).

Prerequisites

  • Node.js v18.x or higher
  • npm (typically bundled with Node.js)
  • A valid Infura API key for EVM network access
  • An Ethereum private key for signing transactions

Installation

  1. Clone the Repository:

    bash
    git clone https://github.com/kukapay/token-minter-mcp.git
    cd token-minter-mcp/server
    
  2. Install Dependencies:

    bash
    npm install
    

Configuration

json
{
  "mcpServers": {
    "Token-Minter-MCP": {
      "command": "node",
      "args": ["path/to/token-minter-mcp/server/index.js"],
      "env": {
        "INFURA_KEY": "your infura key",
        "PRIVATE_KEY": "your private key"
      }
    }
  }
}

Usage

  1. Examples:

    I want to create a new token called 'RewardToken' with the symbol 'RWD' on Arbitrum. It should have 5 million tokens in initial supply and use 6 decimal places.

    Token deployment initiated on Arbitrum (chainId: 42161)!
    Name: RewardToken
    Symbol: RWD
    Decimals: 6
    Initial Supply: 5000000 tokens
    Transaction Hash: 0xabc123...
    Note: Use 'getTransactionInfo' to check deployment status.
    

    Can you tell me how much POL I have in my wallet on the Polygon network?

    Account Balance on Polygon (chainId: 137):
    Address: 0xYourAddressHere
    Balance: 25.3478 POL
    

    What’s the balance of my newly created token on Polygon?

    Token Balance on Polygon (chainId: 137):
    Address: 0xYourAddressHere
    Token: 0xYourTokenAddressHere
    Symbol: ABCD
    Balance: 10000000.00 ABCD
    

    Please transfer 150.75 USDC from my account to 0xRecipientAddressHere on Polygon."

    Transfer initiated on Polygon (chainId: 137)!
    Token: 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174
    To: 0xRecipientAddressHere
    Amount: 150.75 (150.75 tokens)
    Transaction Hash: 0xdef456...
    Note: Use 'getTransactionInfo' to check transfer status.
    

    What’s the status of my token deployment transaction with hash 0xabc123... on Arbitrum?

    Transaction Info on Arbitrum (chainId: 42161):
    Hash: 0xabc123...
    From: 0xYourAddressHere
    To: Contract Creation
    Value: 0 ETH
    Status: Success
    Deployed Contract Address: 0xNewTokenAddressHere
    

    Give me the details of the token at address 0xNewTokenAddressHere on Arbitrum.

    Token Info on Arbitrum (chainId: 42161):
    Address: 0xNewTokenAddressHere
    Name: RewardToken
    Symbol: RWD
    Decimals: 6
    Total Supply: 5000000
    

    How do I deploy a token on Polygon? What details do I need to provide?

    To deploy a token on Polygon (chainId: 137), use the "deployToken" tool with these parameters:
    - name: The token's full name (e.g., "MyToken")
    - symbol: The token's ticker (e.g., "MTK")
    - initialSupply: Amount in token units (e.g., 1000000 for 1M tokens, default 1,000,000)
    - decimals: Optional number of decimals (default is 18)
    - chainId: Optional chain ID (default is 1 for Ethereum)
    
  2. Local Testing:

    Intall dependencies:

    bash
    cd token-minter-mcp
    npm install
    

    Start a local Hardhat node:

    npx hardhat node
    

    Use chainId: 1337 in your prompts to test locally.

Supported Networks

Chain ID Network Name Native Token
1 Ethereum ETH
137 Polygon POL
56 BSC BNB
42161 Arbitrum ETH
10 Optimism ETH
59144 Linea ETH
8453 Base ETH
81457 Blast ETH
11297108109 Palm PALM
43114 Avalanche AVAX
42220 Celo CELO
324 zkSync ETH
5000 Mantle MNT
204 opBNB BNB
534352 Scroll ETH
1923 Swellchain ETH
130 Unichain ETH
23448594291968334 Starknet ETH
80094 Berachain BERA
999 Hyperliquid HYPE
146 Sonic S
1337 Localhost ETH

License

This project is licensed under the MIT License. See the LICENSE file for details.

Star History

Star History Chart

Repository Owner

kukapay
kukapay

User

Repository Details

Language JavaScript
Default Branch main
Size 170 KB
Contributors 2
License MIT License
MCP Verified Nov 12, 2025

Programming Languages

JavaScript
96.97%
Solidity
3.03%

Tags

Join Our Newsletter

Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.

We respect your privacy. Unsubscribe at any time.

Related MCPs

Discover similar Model Context Protocol servers

  • EVM MCP Server

    EVM MCP Server

    Unified Model Context Protocol server for multi-chain EVM blockchain access

    EVM MCP Server provides a comprehensive Model Context Protocol-compliant interface for blockchain services across 30+ EVM-compatible networks. It enables AI agents and other clients to interact programmatically with Ethereum, Optimism, Arbitrum, Base, Polygon, and more via standardized tools and resources. Features include blockchain data access, smart contract interactions, token transfers (including NFTs), ENS name resolution, and multi-network support. The server ensures a consistent and context-aware interface for AI and software agents to discover and leverage on-chain functionality.

    • 340
    • MCP
    • mcpdotdirect/evm-mcp-server
  • Blockchain MCP powered by Tatum

    Blockchain MCP powered by Tatum

    MCP server for universal blockchain data access across 130+ networks.

    Blockchain MCP powered by Tatum is a Model Context Protocol (MCP) server that enables large language models (LLMs) to read and write blockchain data across more than 130 networks. It provides unified access to both the Tatum Blockchain Data API and direct RPC gateways, supporting tools for retrieving balances, portfolios, transactions, and more. The platform is designed for seamless integration via API key and configurable MCP client setups, making it easier to build blockchain-aware AI solutions. Comprehensive documentation and extensive network compatibility facilitate robust development and scalability.

    • 12
    • MCP
    • tatumio/blockchain-mcp
  • Web3 MCP

    Web3 MCP

    A Model Context Protocol server for unified blockchain data access.

    Web3 MCP is a Model Context Protocol server that provides access to blockchain data through Ankr's Advanced API. It allows large language models to interact seamlessly with multiple blockchain networks such as Ethereum, BSC, Polygon, and Avalanche. With support for NFT, token, and blockchain query APIs, it enables users and AI agents to retrieve on-chain data, statistics, and analytics efficiently within an MCP context.

    • 3
    • MCP
    • tumf/web3-mcp
  • MCP XRPL Server

    MCP XRPL Server

    Unified Model Context Protocol server for seamless AI-driven interaction with the XRP Ledger.

    MCP XRPL Server provides a comprehensive Model Context Protocol implementation for the XRP Ledger, enabling AI agents to access blockchain services seamlessly across MainNet, TestNet, and DevNet. It offers an extensive suite of features including account management, token transfers, NFT operations, DIDs, AMM operations, and oracle interactions, all via a standardized MCP interface. The server supports context-driven interactions, making XRPL functionality readily accessible for AI-powered agents.

    • 5
    • MCP
    • RomThpt/mcp-xrpl
  • EVM MCP Server

    EVM MCP Server

    A Model Context Protocol server providing full access to EVM JSON-RPC methods.

    EVM MCP Server is a comprehensive MCP (Model Context Protocol) server offering seamless access to Ethereum Virtual Machine (EVM) JSON-RPC methods across all major EVM-compatible networks. It enables integration with node providers like Infura, Alchemy, QuickNode, and local nodes, offering 20+ specialized tools for blockchain interaction. Users can configure it easily with Claude Desktop for AI-driven workflows and manage blockchain data, transactions, and events through a standardized context protocol.

    • 0
    • MCP
    • JamesANZ/evm-mcp
  • mcp-get

    mcp-get

    A command-line tool for discovering, installing, and managing Model Context Protocol servers.

    mcp-get is a CLI tool designed to help users discover, install, and manage Model Context Protocol (MCP) servers. It enables seamless integration of Large Language Models (LLMs) with various external data sources and tools by utilizing a standardized protocol. The tool provides access to a curated registry of MCP servers and supports installation and management across multiple programming languages and environments. Although now archived, mcp-get simplifies environment variable management, package versioning, and server updates to enhance the LLM ecosystem.

    • 497
    • MCP
    • michaellatman/mcp-get
  • Didn't find tool you were looking for?

    Be as detailed as possible for better results