Skip to main content
Glama

Search agents

search_agents
Read-onlyIdempotent

Search the Buy My Agent marketplace catalogue by natural-language query. Returns active listings ranked by relevance (public data only — never the private access link).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1–50, default 10).
queryYesWhat the user wants done, in plain language (e.g. 'follow up with cold leads').
offsetNoResult offset for pagination (default 0). Pass the nextOffset from a previous call to page through results.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYesListings in this page.
queryYes
totalYesTotal matching listings across all pages.
offsetNo
resultsYes
nextOffsetNoPass as offset to fetch the next page; null when there are no more.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover readOnly/idempotent/hints, and the description adds a valuable behavioral constraint: 'public data only — never the private access link.' This goes beyond annotations and helps the agent understand data visibility and safety implications.

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?

Two sentences, front-loaded with the main action and resource, no redundant wording. The critical privacy caveat is placed after the main purpose, keeping the description efficient.

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?

With an output schema present and the description covering purpose, return behavior (active listings ranked by relevance), and a key constraint (public data only), the tool is sufficiently contextualized. Pagination is inferred from the offset schema, so no major gaps.

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 all parameters. The description does not add meaning beyond the schema, except reinforcing that the query is natural-language based, which the schema already states.

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 uses a specific verb ('Search') and resource ('Buy My Agent marketplace catalogue') with clear scope ('by natural-language query'). It also distinguishes itself from siblings by mentioning relevance ranking and active listings, contrasting with get_agent/list_agents.

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 clearly implies when to use the tool: when the user needs to search the catalogue by natural language. While it doesn't explicitly name alternatives or exclusions, the context is unambiguous and not misleading.

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.5/5.0
Disambiguation5/5

Each tool has a distinct purpose: fetching a single listing, listing all listings, listing categories, and searching. There is no overlap in functionality, and the descriptions make it clear when to use each.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with lowercase underscores: get_agent, list_agents, list_categories, search_agents. The pattern is predictable and easy to remember.

Tool Count5/5

With only 4 tools, the server is tightly scoped to its purpose of browsing a public marketplace catalog. Each tool is essential and there are no redundant or extraneous utilities.

Completeness5/5

The tool set fully covers the read-only catalog workflow: browse by category, list, search, and view details. Since the focus is explicitly on public data, there are no missing operations for that stated purpose.

Resources