Skip to main content
Glama
4hglee-ops

Gyuniverse GitHub Projects MCP

by 4hglee-ops

remove_github_project_sub_issue

DestructiveIdempotent

Removes a target issue from a source issue's sub-issues without deleting either issue, keeping GitHub Projects relationships accurate.

Instructions

Remove target from source's sub-issues. Does not delete either Issue. Single relationship only. Both Issue items must belong to the same authorized Project. Requires an authenticated actor with project.write and item.relationship.write plus the global write gate. Re-reads both directions and persists audit, including no_change. Do not retry failures automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ownerYes
numberYes
sourceItemIdYes
targetItemIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.3/5.0
Behavior5/5

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

Goes well beyond the annotations (destructiveHint, idempotentHint, etc.): clarifies that neither Issue is deleted, that only a single relationship is affected, that it re-reads both directions, that it persists an audit record including no_change, and that automatic retries are discouraged. This is exactly the extra context a mutation tool needs.

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?

Purpose is front-loaded, followed by scope, constraints, and warnings. Every sentence carries information, though the density is high and could be slightly better segmented for scanning.

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 destructive, no-output-schema tool it covers the essentials: side effects, permission requirements, idempotency-aware audit behavior, and retry policy. Only the parameter-level detail is thin, which is a minor gap given the rich behavioral coverage.

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 coverage is 0%, so the description must compensate. It conveys the source/target semantics that map to sourceItemId and targetItemId and implies owner/number via 'authorized Project', but gives no format, identifier, or validation detail for the four required params.

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?

States a specific verb ('Remove') and resource ('target from source's sub-issues'), and immediately delimits scope with 'Does not delete either Issue. Single relationship only.' This clearly distinguishes it from siblings like add_github_project_sub_issue and remove_github_project_blocked_by.

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?

Provides strong operational context: both items must belong to the same authorized Project, and it warns 'Do not retry failures automatically.' It stops short of explicitly naming alternatives or stating when to prefer this over other relationship tools, but the preconditions are clear.

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