Skip to main content
Glama
8seneca-hub

8seneca Projects MCP Server

Official
by 8seneca-hub

update_issue

Update an existing issue's fields—such as name, state, priority, or assignees—by providing the project and issue UUIDs.

Instructions

Update an issue. This requests project_id and issue_id as uuid parameters. If you have a readable identifier, you can use the get_issue_using_readable_identifier tool to get the issue_id and project_id

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issue_idYesThe uuid identifier of the issue to update
issue_dataYesThe fields to update on the issue
project_idYesThe uuid identifier of the project containing the issue

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.5-8seneca.1

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It implies mutation via 'Update' and states ID requirements, but says nothing about permissions, partial-update semantics, read-only fields, response shape, or side effects. For a mutating write tool, this is a significant gap.

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 brief and front-loaded, with the useful resolver guidance in the second sentence. The first sentence is somewhat redundant with the tool name, but there is no bloat or irrelevant detail.

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?

This is a complex write operation with a large nested issue_data object, three required parameters, no output schema, and no annotations. The description only addresses ID resolution and leaves partial-vs-full update behavior, response contents, and permissions unclear, so an agent cannot invoke it with full confidence.

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?

The schema already describes all three top-level parameters and the nested issue_data object, so it does the heavy lifting. The description adds the uuid requirement and the readable-identifier resolution hint, but doesn't clarify how issue_data should be constructed or which nested fields are actually updatable.

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 clear verb and resource ('Update an issue') and identifies the required ID parameters, so an agent knows what the tool operates on. It doesn't enumerate which update fields are supported, so it's clear but not richly detailed.

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

Usage Guidelines4/5

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

Explicitly instructs the agent to use get_issue_using_readable_identifier first if only a readable identifier is available, which is valuable routing guidance. It stops short of explaining when not to use update_issue or contrasting it with create_issue and other issue tools.

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