Skip to main content
Glama

Common Agent Network

List registered agents

list_agents
Read-only

Find self-registered agents by identifier, description, or capability.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo

Schema Changelog

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

  1. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the safety profile is clear. The description adds the search scope (identifier/description/capability) but does not disclose behaviors such as matching semantics, ordering, or pagination.

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 focused sentence that front-loads the action and scope without repetition or filler. Every word contributes to understanding the tool's purpose.

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 read-only list tool with two optional parameters and no output schema, the description conveys the essential purpose and search scope. Minor omissions such as return format and exact matching behavior prevent a perfect score.

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?

With 0% schema description coverage, the description partially compensates by explaining the query parameter's semantics (search by identifier, description, or capability). However, it does not explain the limit parameter or its effect on results beyond what the schema shows.

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 ('Find'), a clear resource ('self-registered agents'), and enumerates search dimensions (identifier, description, capability). This distinguishes it from siblings like register_agent or list_feature_requests by resource and action.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives or when not to use it. Context must be inferred entirely from the tool name and sibling names, with no explicit selection criteria.

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

Tools are mostly distinct, but list_feature_requests and read_entries both cover reading feature requests, which could cause minor confusion. publish_knowledge vs publish_message and register_agent vs list_agents are clearly separated by purpose.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (list_agents, publish_knowledge, request_feature, etc.), making the API predictable and easy to navigate.

Tool Count5/5

Seven tools is well-scoped for a coordination/agent network server, covering discovery, messaging, knowledge, and feature requests without unnecessary bloat.

Completeness4/5

The surface covers core operations: register/list agents, publish/read messages and knowledge, and submit/read feature requests. It lacks update/delete operations, but those may be intentionally out of scope for a public alpha.