Skip to main content
Glama

list_review_reports

List previously generated GitLumen MCP reports stored locally.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Schema Changelog

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

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description is the only behavioral signal. It does disclose that the operation is local and that it only surfaces previously generated reports, implying no new generation or remote scanning. It does not, however, describe result ordering, empty-state behavior, or whether the operation is purely read-only, which would be helpful without 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, tight sentence with no filler. Every word contributes meaning: 'previously generated,' 'stored locally,' and 'reports' all constrain the tool's behavior.

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 list tool with one optional parameter and no output schema, the description covers the essential context: what is listed, where it comes from, and that it is limited to prior local report generation. Additional return-format details would be nice but are not critical for correct invocation.

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 has one optional 'limit' parameter with default, minimum, and maximum, but no additional description coverage. The parameter name plus constraints make its meaning reasonably clear, so the description does not need to restate it. Still, the description adds no value about how 'limit' affects the returned list.

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 ('List') and names a precise resource ('previously generated GitLumen MCP reports stored locally'). This clearly separates it from siblings like get_review_report (fetching one report) and screen_repository (scanning a repository), so an agent can identify its role immediately.

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 wording implies the tool is for enumerating already-generated local reports, which hints that it would be used before get_review_report. However, it does not explicitly state when to prefer this over alternatives or mention any exclusions, leaving some routing to inference.

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

Each tool serves a clearly distinct purpose: explaining the workflow, fetching repository structure, generating a report, and retrieving/listings existing reports. The overlap between fetching structure and screening is explicitly disambiguated by the 'without generating a full risk report' phrasing.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: explain_, get_, get_, list_, screen_. The verbs clearly map to their actions, and the objects are specific and readable.

Tool Count5/5

Five tools is well-scoped for this server's purpose: generate, retrieve, list, inspect, and explain. Each tool earns its place without redundancy or bloat.

Completeness4/5

The core workflow of generating and retrieving risk reports is fully covered, with repository structure inspection as a useful supporting action. A delete/remove operation for locally stored reports is a minor missing feature but not a critical gap in the primary workflow.