Skip to main content
Glama

jira_rank_backlog

DestructiveIdempotent

Reorder Jira backlog issues through the project-bound connector, ensuring authorized, idempotent writes with approval tracking for safe prioritization.

Instructions

Jira connector operation rank_backlog (platform tool jira.rank_backlog).

Routes only through the exact project/account governed connector authority.

Args: arguments: JSON string of arguments for the connector operation. project_id: Authenticated Project UUID. project_ref: Exact project correlation reference. connector_account_ref: Project-bound connector account alias. idempotency_key: Stable business-action identity. effect: Claimed read or write effect; Spring verifies it. approval_ref: Approved platform task UUID when resuming a write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
effectNo
argumentsNo{}
project_idNo
project_refNo
approval_refNo
idempotency_keyNo
connector_account_refNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.1.1
    • addedInput schema / properties / approval_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Approval Ref"
      +}
    • addedInput schema / properties / connector_account_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Connector Account Ref"
      +}
    • addedInput schema / properties / effect
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Effect"
      +}
    • addedInput schema / properties / idempotency_key
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Idempotency Key"
      +}
    • addedInput schema / properties / project_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Id"
      +}
    • addedInput schema / properties / project_ref
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "title": "Project Ref"
      +}
  2. First observedv0.1.0

TDQS

C2.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=true, and idempotentHint=true, so the safety profile is covered. The description adds some useful context beyond annotations: the governed-authority routing constraint, the idempotency_key purpose, that 'effect' is verified by Spring, and that approval_ref is needed when resuming a write. However, it never discloses what the rank operation actually changes on the Jira side or the consequences of the destructive hint. 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The docstring is well-structured with a flat Args list, no filler prose, and the identity and governance constraint are front-loaded. The only redundancy is the parenthetical platform path '(platform tool jira.rank_backlog)', which adds minimal value beyond the first clause. Overall, appropriately sized and scannable.

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?

An output schema exists, so return values need not be explained, and every parameter gets at least a label. However, the tool's core domain behavior is undefined, the JSON 'arguments' payload is a black box, and the governance workflow (how project_id, project_ref, and connector_account_ref relate, and how approval_ref is obtained for writes) is only hinted at. For a tool with this much routing and approval machinery, an agent cannot confidently construct a correct call.

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?

With 0% schema description coverage, the description carries the full documentation burden and does provide a one-line gloss for all 7 parameters, which is meaningful compensation. But several glosses are near-tautological ('project_ref: Exact project correlation reference'), and the most important parameter, 'arguments' (the JSON string payload for the connector operation), is left completely opaque—the description never says what a rank_backlog arguments payload should contain. Partial but incomplete compensation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description only restates the operation identity ('Jira connector operation rank_backlog (platform tool jira.rank_backlog)') without explaining what ranking a backlog does—e.g., reordering issues by priority. The verb 'rank' plus resource 'backlog' is named, but the domain semantics are never defined, so the description borders on tautology and does not distinguish from similar-sounding siblings like coding_prioritize_backlog.

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

Usage Guidelines1/5

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

There is no guidance on when to select this tool versus alternatives, no exclusions, and no mention of any sibling tool. The only contextual sentence, 'Routes only through the exact project/account governed connector authority,' describes an operational routing constraint, not a selection condition. An agent is given no basis for deciding this tool is the right one.

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

Deploy Server

Other Tools