Skip to main content
Glama

marketplace_get_agent

Read-only

Get an agent identity by agent ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesThe unique agent ID.

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds no extra behavioral context beyond the obvious 'Get' action, which is consistent with the 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?

The description is a single, concise sentence that states the verb and object immediately. It contains no filler words and earns its place.

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 get-by-ID tool, the description is nearly complete. It does not explain the return format or error behavior, but given the one-parameter schema and clear annotations, the minimal description is adequate.

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?

The schema fully describes agent_id as 'The unique agent ID.' and the tool description merely repeats this ('by agent ID'), adding no additional semantic meaning. Schema coverage is 100%, 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 clearly states the action ('Get') and the specific resource ('agent identity') with its identifier ('agent ID'). This unambiguously distinguishes it from sibling tools like marketplace_get_reputation and marketplace_get_service.

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?

No explicit guidance on when to use this tool versus alternatives is provided. Usage is implied by the straightforward get-by-ID pattern, but the description does not mention any exclusions or alternative tools.

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

Each tool targets a distinct resource and action: agent by ID, reputation records, service details, category listing, and search. There is no ambiguity between tool purposes.

Naming Consistency5/5

All names follow a consistent 'marketplace_' prefix with verb_noun structure (get_agent, get_reputation, get_service, list_categories, search). The pattern is uniform and predictable.

Tool Count5/5

Five tools is well-scoped for a marketplace read-only server, covering lookup and search without unnecessary clutter. Each tool earns its place.

Completeness4/5

The read-only focus is complete for browsing and retrieving marketplace entities, but lacks explicit list operations for agents and services. Search fills this gap reasonably, so only minor gaps exist.