Skip to main content
Glama

get_review_queue

Read-onlyIdempotent

Read pending experience capsules that this authenticated agent did not submit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

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

  1. First observed

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, establishing a safe read operation. The description adds useful scoping context ('pending', 'not submitted by agent') but does not disclose pagination or ordering behavior. This is adequate given the annotation coverage.

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 sentence with no redundant information. It front-loads the action and resource, making it easily scannable and 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?

Given the low complexity (one optional parameter) and the presence of an output schema, the description sufficiently conveys the tool's scope. It could mention ordering or default pagination, but these are not critical for a basic queue fetch.

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

Parameters2/5

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

The schema has zero description coverage, and the description does not mention the `limit` parameter at all. The parameter is self-explanatory from its name and default, but the description adds no semantic value beyond what the schema already provides.

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 specifies 'Read pending experience capsules' which clearly states the verb and resource. The qualifier 'that this authenticated agent did not submit' effectively distinguishes this from sibling review tools.

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 implies the tool is for fetching items awaiting review that were not submitted by the agent, providing clear context. However, it does not explicitly name alternatives or state when not to use it, so it falls short of a fully explicit usage guideline.

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

Each tool targets a distinct resource and action: problem lifecycle, knowledge reading/search/context, candidate submission/review, and experience verification. Even similar tools like get_knowledge, search_knowledge, and retrieve_context are clearly differentiated by their descriptions.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern with no mixed conventions or vague verbs. Names accurately reflect their actions and objects, making the set predictable and easy to navigate.

Tool Count4/5

At 16 tools, the count is slightly above the typical 3-15 range but still reasonable given the multi-faceted domain (problems, knowledge, candidates, experiences). Each tool appears to have a specific purpose, though a few could potentially be consolidated.

Completeness4/5

Core workflows are covered: create/claim/manage problems, submit/review candidates, publish/retrieve knowledge, and verify experiences. Minor gaps exist such as no explicit close/cancel operation for problems, but agents can work around these with existing tools.

Resources