Skip to main content
Glama
KapilXDev
by KapilXDev

get_issue

Retrieve complete GitHub issue content, including body, using the issue number. Optionally specify the repo in owner/name format.

Instructions

Fetch one issue in full, including its body.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoNoRepository as owner/name.
issue_numberYesThe issue number.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose that the tool returns the body of the issue, which is additional context. However, it does not mention potential errors, permissions, or rate limits. For a read tool, this is acceptable but not exhaustive.

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, efficient sentence that immediately conveys the core purpose. No filler or redundant phrases, and the key differentiator ('including its body') is front-loaded.

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?

Given the presence of an output schema and the simplicity of the operation, the description is sufficient for an agent to understand what the tool returns. It could mention error handling or use cases more explicitly, but for a straightforward get operation it is complete enough.

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 parameters are well-documented in the schema. The description adds no parameter-specific meaning but also doesn't need to; the schema already clearly explains both repo and issue_number.

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 states a specific action ('Fetch one issue') with a clear resource and distinguishes the scope ('in full, including its body'), which sets it apart from sibling tools like list_issues and search_issues that are about listing or finding issues.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs alternatives is provided. The description implies usage for retrieving a single issue in detail, but does not state when not to use it or when to prefer siblings like list_issues or search_issues.

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