Skip to main content
Glama

update_issue

Modify an existing issue's fields such as title, description, labels, assignees, milestone, due date, weight, or type, and close or reopen it. Returns a slim confirmation or the full updated issue.

Instructions

Update an issue. Returns a slim confirmation by default; set full_response=true for the complete updated issue object. Use this to change fields on an existing issue; use update_issue_description_patch for a targeted description edit that avoids sending the full body, and use create_issue_note for discussion. The operation mutates issue state, requires issue-edit permission, and returns the updated issue or a validation/permission/conflict error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoThe title of the issue
labelsNoArray of label names
weightNoWeight of the issue (numeric, typically hours of work)
due_dateNoDate the issue is due (YYYY-MM-DD)
issue_iidYesThe internal ID of the project issue
issue_typeNoThe type of issue. One of issue, incident, test_case or task.
project_idYesProject ID or URL-encoded path
descriptionNoThe description of the issue
state_eventNoUpdate issue state (close/reopen)
assignee_idsNoArray of user IDs to assign issue to
confidentialNoSet the issue to be confidential
milestone_idNoMilestone ID to assign
full_responseNoIf true, return the complete updated issue object. Default returns a slim confirmation (iid, title, state, web_url, updated_at) to reduce token usage.
discussion_lockedNoFlag to lock discussions

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changedv2.1.30
    • addedInput schema / properties / full_response
      Added value: +{
      +  "description": "If true, return the complete updated issue object. Default returns a slim confirmation (iid, title, state, web_url, updated_at) to reduce token usage.",
      +  "type": "boolean"
      +}
  2. Addedv2.1.18
  3. Removedv2.1.14
  4. Addedv2.1.11
  5. Removedv2.1.10
  6. Changed4 schema fields changedv2.1.9
    • removedInput schema / additionalProperties
      Removed value: -false
    • changedInput schema / properties / issue_type / description
      Previous value: -"the type of issue. One of issue, incident, test_case or task."New value: +"The type of issue. One of issue, incident, test_case or task."
    • changedInput schema / properties / weight / description
      Previous value: -"Weight of the issue (0-9)"New value: +"Weight of the issue (numeric, typically hours of work)"
    • changedInput schema / required
      Previous value: -[
      -  "issue_type"
      -]New value: +[
      +  "project_id",
      +  "issue_iid"
      +]
  7. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations only contain openWorldHint=true, which doesn't cover safety. The description discloses that it mutates issue state, requires issue-edit permission, and that errors are validation/permission/conflict - all beyond what annotations provide. It doesn't mention reversibility or specific side effects beyond state mutation, but for an update operation with these disclosures, a 4 is appropriate. No contradiction with annotations.

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?

Three sentences, front-loaded with the primary action and return behavior, then alternatives, then mutation/safety context. Every sentence earns its place, and the structure is efficient given the 14-parameter surface area.

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 14-param mutation tool with no output schema but complete schema descriptions, the description covers the key context: what it does, when to use alternatives, what it returns, and its error modes. It doesn't enumerate which fields can be changed together or detail specific validation rules, but the schema provides field-level descriptions. A 4 is reasonable - it's complete enough for an agent to call correctly, with minor gaps on combined-field constraints.

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 the schema fully documents all 14 parameters. The description doesn't add much to parameter meaning beyond noting full_response for the complete object. Following the calibration rule, baseline is 3 when schema covers everything - the description adds only minimal extra context, so 3 is correct.

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 states a clear verb ('Update an issue') plus the primary resource, and explicitly differentiates from siblings by naming update_issue_description_patch, create_issue_note, and delete_issue. An agent can tell exactly what this tool does compared to related tools.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance: 'Use this to change fields on an existing issue', and explicitly lists alternatives with conditions ('use update_issue_description_patch for a targeted description edit... use create_issue_note for discussion'). It also implies when not to use it. This is strong guidance.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zereight/gitlab-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server