Standard Tools: tokenMetadataInfo
tokenMetadataInfoGet a token metadata and price info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The token address | |
| network | Yes | The network of the token |
tokenMetadataInfoGet a token metadata and price info.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The token address | |
| network | Yes | The network of the token |
Changes observed during successful MCP inspections.
Input schema / properties / network / enumPrevious value: -[
- "solana",
- "ethereum",
- "arbitrum",
- "avalanche",
- "bsc",
- "optimism",
- "polygon",
- "base",
- "zksync",
- "sui"
-]New value: +[
+ "solana",
+ "ethereum",
+ "arbitrum",
+ "avalanche",
+ "bsc",
+ "optimism",
+ "polygon",
+ "base",
+ "robinhood",
+ "zksync",
+ "sui"
+]Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, so the safety profile is well covered. The description adds only that the result includes metadata and price, but it does not disclose the output shape, pricing basis, or data sources.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, scannable sentence with no filler or redundant restatement of the input schema. It is concise, though slightly under-specified in terms of useful context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only lookup with fully documented parameters, this is minimally adequate. But without an output schema and with vague language like 'price info', the description does not fully clarify response shape or distinguish this tool from close sibling token/price tools.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters documented. The description itself adds no further parameter-level detail, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('Get') and resource ('token metadata and price info'), so an agent can tell what operation is performed. However, it does not distinguish this tool from many token/price siblings such as getCryptoPrice or solanaGetTokenPrices, so differentiation is left to the name and schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the tool to use when you need both token metadata and price information in one call, and the read-only annotations reinforce safe usage. Yet it does not explicitly state when to prefer it over alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.