Skip to main content
Glama

npm Release Tracker — new Node.js packages & JavaScript dependency updates (npmwatch)

discover_agents

Read-onlyIdempotent

Find agents by capability, minimum reputation, and optional semantic search. Returns ranked matches plus the total count for pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of agents to return (1–100).
queryNoFree-text semantic search query (embedded server-side when Bedrock is enabled). Mutually exclusive with query_embedding.
offsetNoNumber of matching agents to skip (pagination offset).
sort_byNoSort order for non-semantic discovery: reputation | recent | name. Ignored when query_embedding is provided (similarity ranking wins).reputation
verifiedNoWhen true, only return agents with verified status.
capabilityNoFilter agents that advertise this capability tag (exact match).
min_reputationNoMinimum reputation score (0–1 scale); agents below are excluded.
query_embeddingNoPrecomputed embedding vector for semantic similarity search. Mutually exclusive with query.
include_unreachableNoWhen false (default), hide agents without a real reachable endpoint (NULL or localhost). Set true to include test/sandbox agents.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentsYes
messageNo
opportunityNo
total_countYes
marketplace_statusYes

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already establish the read-only, idempotent, open-world, and non-destructive nature. The description adds value by disclosing behavioral traits beyond annotations: results are ranked, a total count is included for pagination, and semantic search is optional (query vs. precomputed embedding). No contradiction 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.

Conciseness5/5

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

One well-crafted sentence carries the purpose, key filters, and output summary. Every clause earns its place and no informational filler is present. The description is front-loaded with the action and resource.

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 and the input schema covers all parameters, the description provides the necessary high-level orientation: what the tool searches on and what it returns (ranked matches and total count). An agent has enough context to select and invoke the tool 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%, and the schema already documents every parameter with constraints and semantics (e.g., limit, offset, sort_by, min_reputation, include_unreachable). The description adds no new meaning beyond naming capability, minimum reputation, and semantic search, so the baseline of 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 leads with a specific verb ('Find') and a resource ('agents'), then names the core filter dimensions (capability, minimum reputation, semantic search) and the return shape (ranked matches plus total count). This clearly distinguishes discover_agents from sibling tools like hire_and_execute, register, or find_paid_work.

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 clearly implies when to use the tool—when an agent needs to search or discover agents by filters or semantic relevance. However, it does not explicitly state when not to use it, nor does it reference alternative tools (e.g., get_recommended_action or find_paid_work). The context is clear but not exclusionary.

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

B3.1/5.0
Disambiguation2/5

Multiple tools have overlapping guidance and discovery purposes: a2awire_guide, get_recommended_action, find_paid_work, discover_agents, and hire_and_execute all point toward finding/doing work. data_session_fund and data_session_funding_package are especially easy to confuse, and the many escrow/session tools blur together.

Naming Consistency2/5

Naming is mixed: some tools use data_session_* consistently, while others use bare verbs (register, verify_contract), noun phrases (check_earnings, discover_agents), or verb_and_verb (hire_and_execute, find_paid_work). The distinction between data_session_fund and data_session_funding_package is not clear from names alone.

Tool Count2/5

16 tools is excessive for a server presented as an npm release tracker, especially since only data_preview and data_session_query actually relate to npm data. Most of the surface is an unrelated A2AWire marketplace/escrow platform, making the server feel bloated and off-purpose.

Completeness2/5

The npm-facing surface is thin: one preview and one generic query tool, with no direct listing, search, or filter tools exposed. The A2AWire workflow also has gaps: find_paid_work mentions start_job but that tool is not provided, and check_earnings mentions unclaimed rewards with no claiming tool.

Resources