Skip to main content
Glama

create_issue

Open a new issue in a Gitee repository to track requirements or tasks. Provide owner, repository, and title; optionally include body text and labels.

Instructions

在仓库新建 Issue(收需求/建任务)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo正文,可选
repoYes仓库名
ownerYes仓库所有者
titleYes标题
labelsNo逗号分隔标签,可选

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 full behavioral burden. It says nothing about required permissions, whether the issue is mutable afterward, or what the caller receives. Only the implicit creation semantics are conveyed.

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?

A single short sentence with zero waste, front-loading the verb and resource immediately.

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?

For a mutation tool with no annotations and no output schema, the description omits permissions, response behavior, and sibling routing. The schema documents parameters, but key behavioral context is missing.

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 all 5 parameters are documented in the schema itself. The description adds no field-level semantics beyond the verb/resource, so baseline 3 applies.

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?

States a specific verb and resource ('新建 Issue'), clear enough to distinguish from read-only siblings like list_issues or get_repo_stats. Not a 5 because it does not explicitly name or differentiate from the closest sibling update_issue.

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

Usage Guidelines3/5

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

The parenthetical '收需求/建任务' implies intended use cases (collect requests / create tasks), giving implied guidance. But it does not state when to prefer this over update_issue or when-not to use.

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