Skip to main content
Glama
deanchong
by deanchong

get_issue_priorities_collection

Read-onlyIdempotent

Retrieve all issue priorities configured for a project to understand issue urgency. Use this to prioritize issues based on urgency levels.

Instructions

Get project issue priorities. Retrieve all issue priorities configured for a project. Issue priorities indicate the urgency of an issue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
queryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and openWorldHint=true, so safety and idempotency are covered. The description adds the useful fact that these are configured priorities indicating issue urgency, but it says nothing about whether pagination is supported for exhaustive retrieval or what the response shape is.

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?

Two short sentences with no padding, and the purpose is front-loaded in the first sentence. The second sentence adds conceptual clarity rather than filler.

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

Completeness3/5

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

With annotations covering read behavior and no output schema, the description is adequate but still incomplete: it omits pagination expectations, result scope, and the nested path parameter's meaning. For a collection endpoint with 0% schema coverage and nested params, it should do more.

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

Parameters2/5

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

Schema description coverage is 0% and the tool has a nested path object plus a query object with page/limit. The description supplies zero parameter semantics, leaving the agent to parse the nested schema alone for a required projectId and optional pagination controls.

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?

The description uses a specific verb ('Get') and resource ('project issue priorities') and clarifies what the resource represents ('urgency of an issue'). It fits the *collection tool pattern in the sibling list, but it never names or contrasts a sibling like get_issue_categories_collection.

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

Usage Guidelines2/5

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

There is no when-to-use guidance, no mention of pagination semantics, and no indication of how this configuration-readable tool relates to the sibling list tools. The agent must infer context entirely from the name.

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