Skip to main content
Glama

verify_github

Verifies claims about GitHub PRs or issues by fetching live state, merged status, and details from the GitHub API.

Instructions

Check the live state of a public GitHub pull request or issue via the GitHub API (state, merged flag, merged_at, title, url). Use to verify claims like "the PR was merged".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindYes"pr" or "issue".
repoYesRepository as "owner/name".
numberYesPR or issue number.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses that the check is live, public-only, and via the GitHub API, and it lists the returned fields. However, it does not mention error behavior, rate limits, or what happens when the repo/PR/issue does not exist, which would be valuable for a verification tool.

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 with no filler. The first sentence states the action and output fields; the second gives a concrete usage example. Every word earns its place.

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?

For a simple three-parameter tool with no output schema and no annotations, the description covers the core need: what is checked, which fields are returned, and when to use it. It lacks error-handling details, but the essential information for correct invocation is present.

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?

The input schema already documents all three parameters with 100% coverage, including the enum for 'kind'. The description adds no parameter-level detail beyond what the schema provides, so the baseline of 3 is appropriate.

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 ('Check'), a specific resource ('public GitHub pull request or issue'), and the mechanism ('via the GitHub API'). It also lists the concrete fields returned, making it clearly distinct from the generic sibling tools verify_url and verify_claim.

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

Usage Guidelines4/5

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

The description gives an explicit use case: 'Use to verify claims like "the PR was merged"'. This provides clear context for when to invoke the tool, though it does not explicitly mention when not to use it or compare it to verify_url/verify_claim.

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

Deploy Server

Other Tools