Skip to main content
Glama
umeshmynampati3-cmd

GitHub Triage Agent MCP Server

get_repository_context

Retrieve repository description, topics, README, contributing guides, code owners, and labels to support accurate issue triage.

Instructions

Fetch repository decision context: description, topics, README, CONTRIBUTING.md, CODEOWNERS and the available labels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoYes
ownerYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full transparency burden. It clearly signals a read-only fetch and specifies the data items returned, but it does not disclose authentication needs, behavior when files are missing, or rate limits. For a simple read operation this is adequate but not richly transparent.

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 front-loaded sentence states the operation and then uses a colon-delimited list to enumerate the exact returned items. There is no filler, and the structure makes the scope instantly scannable.

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?

The output schema covers return structure, and the description enumerates the response elements, making the data contract clear. The main gaps are explicit routing guidance and parameter elaboration, but for a low-complexity read tool these are partially mitigated by self-explanatory parameter names and sibling tool names.

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?

Schema description coverage is 0%, and the description does not elaborate on the owner and repo parameters. While these names are self-evident GitHub identifiers, the description provides no per-parameter meaning beyond what the schema title already implies, so it fails to compensate for the absent schema descriptions.

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 names a specific verb ('Fetch') and a precise resource ('repository decision context') followed by an explicit enumeration of contents: description, topics, README, CONTRIBUTING.md, CODEOWNERS, and available labels. This clearly differentiates the tool from siblings focused on issues, pull requests, or recent activity.

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 use when repository-level context is needed, but it does not explicitly state when not to use this tool or mention any sibling alternatives. An agent has to infer routing from the listed contents rather than receiving direct guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.