Skip to main content
Glama

deploy_erc20_token

Deploy a custom ERC-20 token on Chiliz by specifying its name, symbol, and initial supply to launch fan or utility tokens.

Instructions

Deploy a custom ERC-20 token on Chiliz blockchain

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesToken name (e.g., "Fan Token")
symbolYesToken symbol (e.g., "FAN")
initialSupplyYesInitial supply (in tokens, not wei)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure for a write/on-chain operation. It says the tool deploys a token but does not state that this is a state-changing, irreversible, gas-consuming transaction, nor mention authorization or confirmation requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no filler. It is efficient, though terse enough that it leaves important behavioral context unstated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a deployment tool with three required params, no annotations, and no output schema, the description is incomplete. It omits what happens after deployment (address returned, where the token lives, whether deployment is permanent) and any authorization or cost context an agent needs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters, including the important 'not wei' unit clarification for initialSupply. The description adds no parameter detail beyond the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (Deploy) and resource (custom ERC-20 token) plus the target chain (Chiliz), clearly distinguishing it from sibling tools like deploy_nft_collection and deploy_custom_contract. It is not a tautology and gives an agent enough to know what the tool produces.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus alternatives, nor any prerequisites (e.g., wallet connection, gas funds, confirmation requirements). In a sibling set containing deploy_nft_collection and deploy_custom_contract, the absence of routing guidance is a real gap.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.