Skip to main content
Glama
Flowsery

flowsery

Official

Update Issue Status

update_issue_status

Set an issue's status to open, in_progress, resolved, or suspended and get the updated issue back. Only the status changes, so you can reverse it later without affecting title, severity, or comments.

Instructions

Set an issue's status to open, in_progress, resolved, or suspended and return the updated issue. Only the status changes; title, severity, occurrences, and comments stay, and any status can be set again later, so this is reversible. Confirm which state the user means before calling: resolved asserts the bug is fixed, suspended hides a known non-problem from the default list_issues result. Not a delete: issues cannot be removed through this server. Get issueId from list_issues; an unknown id fails with 'Issue not found'. Requires websiteId or domain with a workspace token.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainNoWebsite domain from list_websites (e.g. "example.com"). Alternative to websiteId with a workspace token.
statusYesNew status. resolved asserts the bug is fixed; suspended hides a known non-problem from default listings; open and in_progress keep it visible
issueIdYesIssue ID from list_issues
websiteIdNoWebsite ID from list_websites. Required with a workspace token unless domain is given; ignored with a website key.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoObject with status and data: the full issue detail after the change, with the new status.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.1.1
    • changedInput schema / properties / domain / description
      Previous value: -"Website domain to query. Required when using a workspace token unless websiteId is provided."New value: +"Website domain from list_websites (e.g. \"example.com\"). Alternative to websiteId with a workspace token."
    • changedInput schema / properties / status / description
      Previous value: -"New status"New value: +"New status. resolved asserts the bug is fixed; suspended hides a known non-problem from default listings; open and in_progress keep it visible"
    • changedInput schema / properties / websiteId / description
      Previous value: -"Website ID to query. Required when using a workspace token unless domain is provided."New value: +"Website ID from list_websites. Required with a workspace token unless domain is given; ignored with a website key."
    • changedOutput schema / properties / result / description
      Previous value: -"The updated issue with its new status."New value: +"Object with status and data: the full issue detail after the change, with the new status."
  2. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses that only the status changes, that the operation is reversible ('any status can be set again later'), and that it is not a delete. It also reveals error behavior ('unknown id fails with 'Issue not found'') and authentication requirements ('Requires websiteId or domain with a workspace token'). These details go well beyond the annotations (which only indicate non-read-only and non-destructive) and provide critical context for safe invocation.

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?

The description is dense but each sentence adds essential information: the core action, the reversible nature, the status semantics, the exclusion from deletion, the source of issueId, error behavior, and authentication. It is front-loaded with the primary purpose and flows logically. No fluff or repetition, though it could be slightly tightened without losing clarity.

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?

Given the tool has 4 parameters (2 required) and an output schema, the description covers everything an agent needs: what it does, how to obtain issueId, what happens on failure, authentication requirements, reversibility, and semantic guidance for status choices. The presence of an output schema means the description doesn't need to explain return values. Nothing critical is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the schema already describes each parameter. The description adds value by explaining the semantic differences between status values (e.g., 'resolved asserts the bug is fixed; suspended hides a known non-problem') and clarifies the relationship between websiteId and domain ('Alternative to websiteId with a workspace token'). This contextualizes the parameters beyond their basic type and required-ness, though the schema already provides baseline descriptions.

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 starts with a clear verb and resource: 'Set an issue's status' with an explicit enumeration of allowed values (open, in_progress, resolved, suspended). It also differentiates itself from siblings by stating 'Not a delete: issues cannot be removed through this server,' which distinguishes it from delete_goals and delete_payments. This makes the purpose unambiguous and distinguishes it from alternatives.

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 guidance on when to use the tool and how to select the right status: 'Confirm which state the user means before calling: resolved asserts the bug is fixed, suspended hides a known non-problem from the default list_issues result.' It also instructs to get issueId from list_issues and warns about unknown ids. The 'Not a delete' statement clarifies when NOT to use it. It covers both when and how to use the tool, and names the source for the required parameter.

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