Skip to main content
Glama
4hglee-ops

Gyuniverse GitHub Projects MCP

by 4hglee-ops

get_backlog

Read-onlyIdempotent

Retrieve items from GitHub Projects v2 where Project Status is explicitly Backlog. Filter by owner and project number, with optional archived items.

Instructions

Return items whose Project Status is explicitly Backlog.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
firstNo
ownerYes
numberYes
includeArchivedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered by structured data. The description adds only the filtering semantics ('explicitly Backlog') and omits real behavioral facts an agent needs, such as the silent result cap (first defaults to and is capped at 100) and pagination behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no filler or redundancy. It is efficient, though the brevity is partly under-specification rather than true economy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and 0% parameter documentation, the description should explain the return shape, pagination, and the required project identifiers. Instead it supplies one clause, leaving an agent unable to call the tool correctly without falling back on the schema alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% across four parameters, so the description must carry the burden and does not. It never explains owner, number (presumably the project identifier), first (pagination limit), or includeArchived, leaving every parameter undocumented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a verb (Return) and a filter condition (Project Status is explicitly Backlog), which is better than a tautology. However, 'items' is never grounded — it is unclear whether these are GitHub project items, work items, or issues, and nothing distinguishes it from siblings like list_github_project_items or get_unassigned_work.

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?

There is no when-to-use guidance, no exclusions, and no named alternative. An agent cannot tell from this text why it should call get_backlog instead of list_github_project_items with a status filter.

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