Skip to main content
Glama

token-minter-mcp

const { ethers } = require("hardhat"); async function main() { const [deployer] = await ethers.getSigners(); console.log("Deploying contracts with the account:", deployer.address); const SimpleERC20 = await ethers.getContractFactory("SimpleERC20"); const token = await SimpleERC20.deploy( "Simple Token", // name "STK", // symbol 1000000, // initial supply 18 // decimals ); await token.waitForDeployment(); console.log("SimpleERC20 deployed to:", token.target); } main() .then(() => process.exit(0)) .catch((error) => { console.error(error); process.exit(1); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kukapay/token-minter-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server