Skip to main content
Glama

screen_repository

Screen a public GitHub repository or GitHub pull request URL and generate a GitLumen-style risk report. Supports repo URLs and /pull/ URLs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scopeNoScreening depth. quick downloads fewer files; standard downloads more files.standard
branchNoOptional branch/ref. Ignored for PR URLs unless GitHub needs fallback.
outputNoResponse format returned to the MCP client.compact
repoUrlYesGitHub repository URL, for example https://github.com/owner/repo or https://github.com/owner/repo/pull/123
maxFilesNoOptional hard cap for files downloaded and scanned.

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description must carry full behavioral disclosure. It states the action and supported URL shapes, but does not disclose that the tool downloads/scans file contents, the read-only nature beyond 'screen', network/resource implications, or any constraints. This is a meaningful gap for a tool with side effects like file downloads.

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?

Two sentences, front-loaded with the core purpose, followed by supported URL formats. No filler; all sentences add value and the description is appropriately sized for a tool with a detailed schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The combination of description and schema is enough to invoke the tool, but the description alone does not clarify how this relates to sibling tools, what a 'GitLumen-style risk report' contains, or the behavior/impact of downloads. With no output schema, a bit more detail about report output would improve completeness.

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%, so all five parameters (repoUrl, scope, branch, output, maxFiles) are already documented with types, defaults, enums, and a repository URL example. The description adds no parameter-level details, which is acceptable given the schema's rich coverage.

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 ('Screen'), names the exact resource ('public GitHub repository or GitHub pull request URL'), and states the output ('GitLumen-style risk report'). This clearly differentiates it from siblings like get_repository_structure and list_review_reports.

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 implies when to use this tool (when a risk report on a public repo/PR is needed) but gives no explicit when-not-to-use guidance or alternatives. It does not mention that get_review_report/list_review_reports serve existing reports or that get_repository_structure covers structure-only requests. The 'public' qualifier is the only condition stated.

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.