Skip to main content
Glama
proprock
by proprock

update_issue

DestructiveIdempotent

Update Jira issue fields like summary, description, assignee, labels, components, priority, due date, and parent. Replaces label/component lists, so read first; cannot transition status or comment.

Instructions

Set issue fields, taking the same values get_issue returns: summary as text, description as Markdown, assignee as an account id or the literal "me", labels as a list, components and priority by name, duedate as YYYY-MM-DD, parent as an issue key, and any customfield_* or unknown field as raw Jira JSON. null clears assignee, description, priority, parent, or duedate. labels and components REPLACE the whole list, so read the issue first if you mean to add one. Cannot change status (use transition_issue) or add a comment (use add_comment).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsYes
issue_keyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A5/5.0
Behavior5/5

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

Goes well beyond the destructiveHint annotation by specifying precisely which fields null clears (assignee, description, priority, parent, duedate) and that labels/components REPLACE the entire list rather than append. This is exactly the 'what gets destroyed' context the rubric credits.

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?

Front-loaded with the purpose, then organized as: accepted formats, null semantics, list-replacement warning, and exclusions. Every sentence earns its place; the dense format list is justified because the schema provides zero descriptions.

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

Completeness5/5

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

For a complex tool with an open-ended fields object, the description covers input formats, null-clearing behavior, destructive list semantics, and exclusions with alternatives. The output schema exists, so not describing return values is acceptable per the rubric.

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

Parameters5/5

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

Schema description coverage is 0%, so the description bears full responsibility, and it delivers: it defines the value format for every field type (text, Markdown, account id/'me', list, name, YYYY-MM-DD, issue key, raw Jira JSON for customfield_*). The fields object's additionalProperties true is made meaningful by explaining how to handle custom and unknown fields.

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 and resource ('Set issue fields') and enumerates the exact value formats accepted, referencing get_issue as the source of truth. It explicitly distinguishes itself from siblings by noting it cannot change status (transition_issue) or add a comment (add_comment).

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?

Gives explicit when-not guidance with named alternatives: 'Cannot change status (use transition_issue) or add a comment (use add_comment).' Also instructs to read the issue first when intending to add to labels/components, since those lists are replaced wholesale.

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