list_labels
Retrieve all GitHub labels to organize and categorize issues and pull requests for better project management.
Instructions
List all GitHub labels
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
Retrieve all GitHub labels to organize and categorize issues and pull requests for better project management.
List all GitHub labels
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No |
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 full burden. It states it lists labels but doesn't disclose behavioral traits like pagination, rate limits, authentication needs, or what 'all' entails (e.g., across repos or orgs). This is a significant gap for a list operation.
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?
The description is a single, efficient sentence with zero waste. It's front-loaded and appropriately sized for a simple tool, making it easy to parse quickly.
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?
Given the tool's low complexity (one optional parameter) but lack of annotations and output schema, the description is incomplete. It doesn't explain return values, error handling, or scope, leaving gaps for an AI agent to use it correctly in context with siblings.
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?
The input schema has one parameter ('limit') with 0% description coverage. The description adds no information about parameters, so it doesn't compensate for the schema gap. However, with only one parameter, the baseline is moderate, but the lack of any param info keeps it at a minimal viable level.
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 description clearly states the verb ('List') and resource ('all GitHub labels'), making the purpose immediately understandable. It doesn't differentiate from sibling tools like 'create_label' or other list tools, but it's specific enough to know what it does.
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?
The description provides no guidance on when to use this tool versus alternatives. With siblings like 'list_issues' and 'list_milestones', there's no indication of context or prerequisites for listing labels specifically.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.