Skip to main content
Glama

Aptos Blockchain MCP

by cuongpo
MIT License

deploy_coin

Create and deploy custom coins on Aptos blockchain. Define coin name, symbol, decimals, and optional metadata. Returns coin type ID and transaction details for minting and management.

Instructions

Deploy a new custom coin/token on Aptos blockchain. This creates a new coin type that can be minted, transferred, and managed. Returns the coin type identifier and deployment transaction details.

Input Schema

NameRequiredDescriptionDefault
decimalsNoNumber of decimal places for the coin (typically 6 or 8)
icon_urlNoURL to the coin icon/logo (optional)
max_gas_amountNoMaximum gas amount for the transaction (optional)
nameYesName of the coin (e.g., 'My Token')
project_urlNoURL to the project website (optional)
symbolYesSymbol of the coin (e.g., 'MTK')

Input Schema (JSON Schema)

{ "properties": { "decimals": { "default": 8, "description": "Number of decimal places for the coin (typically 6 or 8)", "maximum": 32, "minimum": 0, "type": "number" }, "icon_url": { "description": "URL to the coin icon/logo (optional)", "type": "string" }, "max_gas_amount": { "default": 5000, "description": "Maximum gas amount for the transaction (optional)", "type": "number" }, "name": { "description": "Name of the coin (e.g., 'My Token')", "type": "string" }, "project_url": { "description": "URL to the project website (optional)", "type": "string" }, "symbol": { "description": "Symbol of the coin (e.g., 'MTK')", "type": "string" } }, "required": [ "name", "symbol" ], "type": "object" }

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/cuongpo/aptos-mcp'

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