Skip to main content
Glama

cryptoguard_search

Read-onlyIdempotent

Find CoinGecko coin IDs by searching token names, symbols, or contract addresses to support crypto trade validation and token scanning.

Instructions

Search for a token's CoinGecko coin ID by name, symbol, or contract address. Use this first if you're unsure of the correct coin_id for scan_token or validate_trade.

Example: search 'pepe' to find the correct coin ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesToken name, symbol, or contract address to search.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds useful behavioral context about returning CoinGecko coin IDs and demonstrates usage with an example, going beyond the annotations.

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?

The description is extremely concise, with purpose, usage guidance, and an example in just two sentences. No redundant information; every sentence serves a clear function.

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

Completeness5/5

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

For a simple search tool with a single parameter and no output schema, the description is fully adequate. It covers purpose, usage context, and example, while annotations cover safety. It's complete for an agent to select and invoke 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?

Schema description coverage is 100%, so the parameter is already well-documented. The description adds marginal value by clarifying the search purpose and providing an example, but doesn't uniquely enrich the parameter semantics beyond the schema.

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?

The description clearly states the tool's function: searching for a token's CoinGecko coin ID by name, symbol, or contract address. It also distinguishes itself from sibling tools by explicitly referencing scan_token and validate_trade as tools that require this coin_id.

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

Usage Guidelines5/5

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

Provides explicit when-to-use guidance: 'Use this first if you're unsure of the correct coin_id for scan_token or validate_trade.' This names alternatives and gives clear usage context, plus an example for added clarity.

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