Skip to main content
Glama
kunwarVivek

mcp-github-project-manager

by kunwarVivek

create_issue

Create a new GitHub issue with title, description, assignees, and labels to track tasks, bugs, or features in your project workflow.

Instructions

Create a new GitHub issue

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
descriptionYes
milestoneIdNo
assigneesYes
labelsYes
priorityNo
typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Create a new GitHub issue' implies a write operation, but it doesn't disclose any behavioral traits such as required permissions, rate limits, whether it's idempotent, what happens on failure, or the format of the response. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.

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 with zero waste. It's front-loaded with the core action ('Create a new GitHub issue'), making it immediately clear. Every word earns its place, and there's no unnecessary elaboration or redundancy.

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?

Given the complexity (a mutation tool with 7 parameters, 4 required), lack of annotations, and no output schema, the description is incomplete. It doesn't provide enough context for safe and effective use—missing details on behavior, parameters, and expected outcomes. The agent would struggle to invoke this tool correctly without additional information.

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

Parameters2/5

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

Schema description coverage is 0%, meaning none of the 7 parameters have descriptions in the schema. The tool description adds no information about parameters beyond what's implied by the tool name (e.g., 'title' and 'description' might be guessed). It doesn't explain what 'milestoneId', 'assignees', 'labels', 'priority', or 'type' mean or how to format them, failing to compensate for the low schema coverage.

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

Purpose4/5

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

The description 'Create a new GitHub issue' clearly states the verb ('Create') and resource ('GitHub issue'), making the purpose immediately understandable. However, it doesn't differentiate this tool from sibling tools like 'add_issues_to_sprint' or 'update_issue', which also involve GitHub issue operations, so it doesn't reach the highest clarity level.

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?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing repository access), when not to use it (e.g., for modifying existing issues), or point to sibling tools like 'update_issue' for different scenarios. The agent must infer usage from the tool name alone.

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