Skip to main content
Glama

findagent_browse_agents

Read-only

Browse the PUBLISHED FindAgent marketplace catalogue WITH pricing — the same store listing the website shows. Returns each agent's slug, title, tagline, price_type (free|paid), price_cents (USD cents), category, rating, install count, and kind. Optional filters: query (text search), category_slug (from findagent_list_categories), price (free|paid). PAGINATED: pass offset (use the returned next_offset) to page through the FULL catalogue until has_more is false. Use findagent_get_agent for the full store view of one slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoOptional page size (default 20, max 100).
priceNoOptional price filter: only free, or only paid agents.
queryNoOptional free-text search over title/tagline/description.
offsetNoOptional pagination offset (default 0). Pass the response next_offset to fetch the next page; repeat until has_more is false to enumerate the whole catalogue.
category_slugNoOptional category slug from findagent_list_categories to filter by.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
limitNo
usageNo
agentsNo
offsetNo
has_moreNo
next_offsetNo

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to state it. It adds behavioral details beyond the schema: that it is the same store listing as the website, that it includes pricing, and how pagination works (next_offset, has_more). No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is moderately long but every sentence contributes: purpose, return fields, filters, pagination, and alternative tool. It is front-loaded with the core purpose, and the structure flows logically. Slightly more detail than necessary, but not wasteful.

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?

Given the output schema exists, the description doesn't need to detail returns, but it does anyway. It covers all filter options, pagination, and the alternative for single-agent views. An agent has everything it needs to call and iterate correctly.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds extra meaning by noting category_slug comes from findagent_list_categories (not mentioned in schema), and reiterates the pagination flow (use returned next_offset) which is also in the schema. This additional context makes it more helpful than a bare 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 verb ('Browse'), the resource ('PUBLISHED FindAgent marketplace catalogue WITH pricing'), and explicitly differentiates from the sibling tool findagent_get_agent ('for the full store view of one slug'). It also includes the exact fields returned, leaving no ambiguity about what the tool does.

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: it is the catalogue browser, and explicitly points to findagent_get_agent for a single agent. It also tells users where to obtain category_slug (from findagent_list_categories) and gives precise pagination instructions (use next_offset, repeat until has_more is false). No ambiguity left for the agent.

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

Every tool targets a clearly scoped resource+action combination, and the versioning variants (bump_version vs repull vs reintrospect_mcp) are explicitly disambiguated by agent kind. Even with 52 tools, the descriptions make each purpose distinct enough to avoid misselection.

Naming Consistency4/5

Nearly all tools follow the findagent_<verb>_<object> snake_case pattern, and families share predictable verbs like list, create, delete, edit, and submit. Minor exceptions such as findagent_preflight, findagent_whoami, and findagent_earnings keep it from perfect consistency.

Tool Count2/5

At 52 tools, this far exceeds the 25-tool threshold for a coherent MCP surface. The count may reflect a broad platform, but as a single toolset it is heavy and likely to strain agent selection and context.

Completeness3/5

The surface covers publishing, versioning, knowledge bases, org management, GitHub import, purchases, and the demand board in impressive depth. However, there are notable dead ends: no unpublish/delete for a live agent, no request-fulfillment/linking action, and no org deletion or KB document update.

Resources