Solana: findSolanaSwapToken
findSolanaSwapTokenFind a Solana token by name or symbol. Use when splBuyIntent reports ambiguous token symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tokenName | Yes | Token name or symbol to search |
findSolanaSwapTokenFind a Solana token by name or symbol. Use when splBuyIntent reports ambiguous token symbol.
| Name | Required | Description | Default |
|---|---|---|---|
| tokenName | Yes | Token name or symbol to search |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds minimal behavioral context beyond the trigger, but does not describe return value, error handling, or scope. With annotations present, this is adequate but not rich.
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 two concise sentences, front-loaded with the core purpose, and contains no waste. Every sentence earns its place.
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, single-parameter lookup tool with good annotations, the description provides sufficient context including the specific trigger scenario. It could mention what the tool returns, but given the lack of an output schema and the simplicity of the tool, the description is adequate.
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?
The input schema already fully describes the single parameter tokenName as 'Token name or symbol to search,' and the description echoes this. With 100% schema coverage, the description adds no additional parameter semantics, so baseline 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 clearly states 'Find a Solana token by name or symbol' with a specific verb and resource. It distinguishes itself from sibling tools by adding the trigger condition 'Use when splBuyIntent reports ambiguous token symbol,' making its purpose unique.
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 provides an explicit when-to-use context ('Use when splBuyIntent reports ambiguous token symbol'), which helps an agent decide. However, it does not mention alternatives or when not to use, so it is a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.