Skip to main content
Glama

search_tools

Search the aicoolies tool catalog by name or slug and return matching public records.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qYesCase-insensitive name or slug fragment
limitNoMax rows, default 10, max 25

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It states the operation is a search and that results are limited to public records, which is useful. However, it does not describe result shape, pagination behavior beyond the schema, or any other runtime characteristics.

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?

A single sentence that is direct and front-loaded. Every clause contributes: the resource, the search keys, and the result scope. There is no filler or redundant restatement.

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 simple two-parameter search tool with fully documented parameters, the description is nearly complete. It identifies the search target, the matching criteria, and the visibility boundary ('public records'). The main gap is the absence of return-field detail, but the lack of an output schema makes that less critical here.

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 both parameters. The description's 'by name or slug' loosely aligns with the q parameter but adds no new meaning beyond the schema. Baseline 3 applies.

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 names a specific action ('Search'), a concrete resource ('aicoolies tool catalog'), and the search keys ('by name or slug'). It also clarifies the result type ('matching public records'), which distinguishes it from sibling tools like get_tool.

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

Usage Guidelines3/5

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

The description implies this is the right tool for finding tools by name or slug, but it does not explicitly contrast it with get_tool or other siblings. There is no when-not-to-use guidance or mention of alternatives, leaving the agent to infer the appropriate selection.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly separate role: catalog index vs metadata vs single-tool fetch vs search vs developer resources. Even get_tool and search_tools are distinguishable because one requires an exact slug while the other returns matching records.

Naming Consistency5/5

All names follow a snake_case verb_noun pattern (get_catalog_context, get_catalog_meta, get_tool, list_developer_resources, search_tools). The verbs correspond to the action, and the naming is predictable across the set.

Tool Count5/5

Five tools is appropriate for a read-only public catalog server. Each tool covers a necessary access pattern (context, metadata, single fetch, search, developer resources) without redundant entries.

Completeness5/5

The domain is catalog access, and the surface covers the full read path: metadata first, full context, specific tool lookup, search, and developer resources. No obvious write or lifecycle operations are needed for this public catalog use case.

Resources