repo_health_check
GitHub repository health signals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes |
GitHub repository health signals
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses almost nothing: not whether the call is read-only, whether it hits the GitHub API and may be rate-limited, what 'health signals' are computed, or what form the response takes. Only the implicit implication that it inspects a repository is conveyed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two words plus a title-like fragment is not concision but under-specification; there is no wasted language because there is almost no language. Nothing is front-loaded or structured beyond a bare noun phrase.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter tool with no output schema and no annotations, the description should at least explain the input format and the kind of signals returned. It leaves both to the agent's imagination, making correct invocation a guess.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% and the single 'repo' parameter has an empty description. The name hints at a repository identifier but not its expected format (owner/repo slug, full URL, or numeric ID), and the description adds no clarification whatsoever.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The phrase 'GitHub repository health signals' names a specific resource and domain, but supplies no verb and no indication of what the tool actually does with the repo (scan, score, list metrics, return a report?). It is closer to a category label than a purpose statement, so an agent can guess the area but not the action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to call this tool, what prerequisites exist (public vs. private repo, auth token), or how it relates to any alternative. Nothing in the description tells the agent when-not to use it or what a better sibling would be.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.