Token Minter MCP Server
Easily deploy, manage, and transfer ERC-20 tokens on 21 blockchains with the Token Minter MCP Server, integrating blockchain technology into AI-driven workflows.

What does “Token Minter” MCP Server do?
The Token Minter MCP Server enables AI assistants and agents to interact with blockchain ecosystems by providing tools for deploying and managing ERC-20 tokens across 21 different blockchains. As an MCP (Model Context Protocol) server, it connects AI-driven workflows with blockchain infrastructure, allowing for programmatic minting, querying, and transferring of tokens. The server exposes standardized interfaces for tasks such as deploying new tokens with customizable parameters, querying token and account information, and initiating token transfers. By integrating with AI clients, developers can automate and streamline token-related operations, empowering applications with blockchain capabilities for rapid prototyping, testing, and live deployments.
List of Prompts
No prompt templates are mentioned in the available documentation or code.
List of Resources
No explicit MCP Resources are described in the available documentation or code.
List of Tools
- deployToken: Deploys a new ERC-20 token with customizable parameters such as name, symbol, initial supply, decimals, and chain ID.
- transferToken: Initiates a transfer of ERC-20 tokens to a specified address, specifying the token address, recipient, amount, and chain ID.
- getTransactionInfo: Retrieves details about a blockchain transaction using its hash and chain ID.
- getTokenBalance: Queries the balance of a specific ERC-20 token for the current account on a specified chain.
- getTokenInfo: Retrieves metadata for an ERC-20 token, including name, symbol, decimals, and total supply.
- getBalance: Checks the native (base) token balance (e.g., ETH) of the current account on a specified blockchain.
Use Cases of this MCP Server
- Token Deployment Automation: Streamline the creation and deployment of new ERC-20 tokens for testnets or mainnets, reducing manual blockchain interactions for developers and product teams.
- Token Transfer Workflows: Programmatically initiate token transfers, helping build and test payment, reward, or airdrop systems in both development and production environments.
- Blockchain Analytics: Query transaction details and balances, enabling AI-driven dashboards and monitoring tools for token and wallet activities.
- Smart Contract Prototyping: Facilitate rapid prototyping of decentralized applications by automating token minting and management processes.
- Educational and Sandbox Environments: Provide a safe environment for learning and experimenting with token operations and blockchain mechanics through controlled AI-driven flows.
How to set it up
Windsurf
- Ensure you have Node.js 18.x or later installed.
- Edit your Windsurf configuration file.
- Add the Token Minter MCP server using the following JSON snippet:
"mcpServers": { "token-minter": { "command": "npx", "args": ["@kukapay/token-minter-mcp@latest"] } }
- Save your configuration and restart Windsurf.
- Verify setup by checking the server logs or invoking a simple tool.
Securing API Keys:
"mcpServers": {
"token-minter": {
"command": "npx",
"args": ["@kukapay/token-minter-mcp@latest"],
"env": {
"PRIVATE_KEY": "${PRIVATE_KEY}"
},
"inputs": {
"PRIVATE_KEY": ""
}
}
}
Claude
- Install Node.js 18.x or later.
- Open Claude’s configuration file.
- Add the Token Minter MCP server as follows:
"mcpServers": { "token-minter": { "command": "npx", "args": ["@kukapay/token-minter-mcp@latest"] } }
- Save the config and restart Claude.
- Confirm the server is running by executing a test command.
Securing API Keys:
"mcpServers": {
"token-minter": {
"command": "npx",
"args": ["@kukapay/token-minter-mcp@latest"],
"env": {
"PRIVATE_KEY": "${PRIVATE_KEY}"
},
"inputs": {
"PRIVATE_KEY": ""
}
}
}
Cursor
- Make sure Node.js 18.x+ is available.
- Locate Cursor’s configuration file.
- Insert the following to configure the Token Minter MCP server:
"mcpServers": { "token-minter": { "command": "npx", "args": ["@kukapay/token-minter-mcp@latest"] } }
- Save changes and restart Cursor.
- Check connectivity by running a supported tool.
Securing API Keys:
"mcpServers": {
"token-minter": {
"command": "npx",
"args": ["@kukapay/token-minter-mcp@latest"],
"env": {
"PRIVATE_KEY": "${PRIVATE_KEY}"
},
"inputs": {
"PRIVATE_KEY": ""
}
}
}
Cline
- Install Node.js 18.x or above if not already present.
- Access the Cline configuration file.
- Add the Token Minter MCP server configuration:
"mcpServers": { "token-minter": { "command": "npx", "args": ["@kukapay/token-minter-mcp@latest"] } }
- Save your config and restart Cline.
- Test the setup by calling a tool endpoint.
Securing API Keys:
"mcpServers": {
"token-minter": {
"command": "npx",
"args": ["@kukapay/token-minter-mcp@latest"],
"env": {
"PRIVATE_KEY": "${PRIVATE_KEY}"
},
"inputs": {
"PRIVATE_KEY": ""
}
}
}
How to use this MCP inside flows
Using MCP in FlowHunt
To integrate MCP servers into your FlowHunt workflow, start by adding the MCP component to your flow and connecting it to your AI agent:

Click on the MCP component to open the configuration panel. In the system MCP configuration section, insert your MCP server details using this JSON format:
{
"token-minter": {
"transport": "streamable_http",
"url": "https://yourmcpserver.example/pathtothemcp/url"
}
}
Once configured, the AI agent is now able to use this MCP as a tool with access to all its functions and capabilities. Remember to change “token-minter” to whatever the actual name of your MCP server is and replace the URL with your own MCP server URL.
Overview
Section | Availability | Details/Notes |
---|---|---|
Overview | ✅ | Brief description available in README. |
List of Prompts | ⛔ | No prompt templates documented. |
List of Resources | ⛔ | No explicit MCP resources listed. |
List of Tools | ✅ | Six tools documented (deploy, transfer, query, etc.). |
Securing API Keys | ✅ | Example provided in setup instructions. |
Sampling Support (less important in evaluation) | ⛔ | No mention of sampling support. |
Our opinion
The Token Minter MCP Server is focused and well-documented in terms of its core functionality (tools and setup), but lacks depth in resource and prompt template documentation. It is strong for developers needing ERC-20 minting automation and blockchain workflows, but would benefit from more detailed MCP resource and workflow prompt examples. Roots and sampling are not documented.
MCP Score
Has a LICENSE | ✅ (MIT) |
---|---|
Has at least one tool | ✅ |
Number of Forks | 6 |
Number of Stars | 13 |
Frequently asked questions
- What is the Token Minter MCP Server?
The Token Minter MCP Server is a bridge between AI-driven workflows and blockchain ecosystems, enabling programmatic deployment, querying, and transfer of ERC-20 tokens across 21 blockchains. It exposes standardized tools for developers to automate token management, transfers, and analytics within FlowHunt and other AI environments.
- What tools does the server provide?
The MCP server provides tools for deploying new ERC-20 tokens (deployToken), transferring tokens (transferToken), retrieving transaction and token information (getTransactionInfo, getTokenInfo), and querying token and native balances (getTokenBalance, getBalance).
- How do I secure my blockchain private key?
You can secure your private key using environment variables in your MCP server configuration. Refer to the setup examples for each client to see how to use the PRIVATE_KEY environment variable for secure key management.
- Can I use this server for both testnets and mainnets?
Yes, the Token Minter MCP Server supports deployment and operations on both testnets and mainnets across 21 different blockchains, depending on your configuration and the chain ID you specify.
- What are some practical use cases?
Use cases include automating token deployment, building payment or reward flows, integrating blockchain analytics into your AI, rapid prototyping of decentralized applications, and providing safe sandboxes for educational purposes.
- Does the server document MCP resources or prompt templates?
The current documentation focuses on tool capabilities and setup. There are no explicit MCP resource or prompt template examples provided yet.
- How do I integrate the Token Minter MCP Server in FlowHunt?
Add the MCP component to your FlowHunt flow, open its configuration panel, and insert your MCP server details in JSON. Once connected, your AI agent can use all available MCP server tools, such as deploying and transferring tokens directly from your workflow.
Integrate Blockchain with FlowHunt
Automate your blockchain token operations and supercharge your AI workflows with Token Minter MCP. Start building smarter, blockchain-ready applications today.