Skip to main content
Glama

search_tools

Single entrypoint for MCP catalog. action=search returns available tools ordered by relevance. action=describe returns tool schema. action=invoke executes a tool by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNo
actionNosearch
queriesNo
tool_idNo
argumentsNo{}
min_scoreNo
force_reindexNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

The description reveals behavioral differences between actions: search returns relevance-ordered tools, describe returns schema, and invoke executes a tool by ID. However, it does not disclose what invoke does with argument, whether side-effects are possible, or fmt of error responses; the annotations are all false and add no meaningful safety context.

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 one tight sentence with three semicolon-delimited clauses, each carrying one concrete action. It is far-leading, readable, and contain no redundant or filler content.

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

Completeness2/5

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

The tool has 7 parameters, no output schema, no meaningful annotations, and a multiplexed action/action//argument interface. The description covers only the action triage and leaves parameter semantics, invocation payload format, scoring/filtering behavior, and side-effect expectations undocumented, so it is not complete enough for reliable invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description only explains the action param via enum examples. The six remaining params (query, queries, tool_id, arguments, min_score, force_reindex) are not described at all in the prose, leaving ambiguous matters like the difference between query and queries, the expected shape of arguments, and meading of min_score/force_reindex.

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 explains what the tool does: it is a single entrypoint for the MCP catalog, with action=search returning available tools ordered by relevance, action=describe returning tool schema, and action=invoke executing by tool ID. This differentiates the tool from the sibling tools because it names both the catatog resource and the distinct actions on that resource.

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 gives practical routing guidance for each possible action: use search to list/find tools, describe to get a schema, and invok to run a tool by ID. It does not explicitely discuss competitors such as marketplaces or auth, but the 'single entrypoint' wording and action-specific returns provide enough context.

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

A3.9/5.0
Disambiguation2/5

The set has major overlap: `marketplace` and `search_tools` both offer search/describe/invoke catalog actions, making it unclear which to call. `report_bug` is also called out as a capability inside `marketplace`, blurring whether that tool is the action or the top-level one.

Naming Consistency3/5

All names are lowercase with underscores, but they mix verb-oriented names (`authenticate`, `connect`, `report_bug`) with noun-oriented names (`marketplace`, `search_tools`) and no consistent verb_noun pattern. `show_version` and `toolkit_info` are similarly status-like but follow different naming styles.

Tool Count4/5

Seven tools is within a reasonable range and the count itself is not problematic. However, the `marketplace` tool is overloaded with many sub-capabilities and `search_tools` duplicates part of it, so the effective scope feels less clean than the raw count suggests.

Completeness4/5

The main workflows are covered: authentication, connection status, catalog search, account/toolkit state, and bug reporting. Missing pieces like an obvious way to uninstall/disconnect or list callable tools are hidden inside `marketplace`, but these are workable gaps rather than fatal ones.