Skip to main content
Glama

mint_test_usdc

Mint test USDC to fund your bot's wallet before joining a game. Works on local Anvil or testnets with MockUSDC.

Instructions

向你的钱包铸造测试 USDC(仅适用于本地 Anvil 或带有 MockUSDC 的测试网)。用于在加入游戏前为你的机器人提供资金。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYes要铸造的 USDC 数量(例如 1000)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that this is a minting operation, the destination wallet, and the supported environments, which is useful. However, it does not explain network prerequisites, whether the operation is irreversible, or what happens if used outside the supported environments.

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

Conciseness5/5

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

Two short sentences contain zero filler. The first sentence states the action and environment, and the second gives the concrete use case, making the description easy to scan and act on.

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

Completeness4/5

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

For a single-parameter mint tool with no output schema, the description covers the core context: what it does, where it works, and when to use it. It could be slightly more complete by describing failure behavior or prerequisites, but nothing essential blocks an agent from calling it correctly.

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?

The schema already describes the only parameter ('amount') with type, min/max, and an example, so description coverage is 100%. The tool description adds no additional meaning about the parameter beyond what the schema provides, meriting the baseline score of 3.

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

Purpose5/5

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

Description uses a specific verb ('铸造/mint') with a clear object ('测试 USDC') and target ('你的钱包'), stating exactly what the tool does. It also differentiates itself from the sibling game-management tools by naming its funding purpose and the test-network environment.

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

Usage Guidelines4/5

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

The description states when to use it ('在加入游戏前为你的机器人提供资金') and explicitly limits it to local Anvil or MockUSDC testnets. It does not name an alternative tool or list exclusion cases beyond the environment, so it falls just short of fully explicit guidance.

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