Skip to main content
Glama
SmartBear

SmartBear MCP server

Official
by SmartBear

Zephyr: Get priorities

zephyr_get_priorities
Read-onlyIdempotent

Fetch test case priorities from Zephyr, optionally filtered by Jira project key, with pagination control for large result sets.

Instructions

Get Zephyr Test Case priorities with optional filters

Toolset: Priorities

Parameters:

  • maxResults (number): Specifies the maximum number of results to return in a single call. The default value is 10, and the maximum value that can be requested is 1000.

Note that the server may enforce a lower limit than requested, depending on resource availability or other internal constraints. If this happens, the result set may be truncated. Always check the maxResults value in the response to confirm how many results were actually returned. (default: 10)

  • startAt (number): Zero-indexed starting position. Should be a multiple of maxResults. (default: 0)

  • projectKey (string): Jira project key filter

Examples:

  1. Get the first 10 priorities

{
  "maxResults": 10,
  "startAt": 0
}

Expected Output: The first 10 priorities with their details

  1. Get priorities for a specific project

{
  "projectKey": "PROJ"
}

Expected Output: The priorities for project PROJ

  1. Get all priorities

{}

Expected Output: All priorities

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
startAtNoZero-indexed starting position. Should be a multiple of maxResults.
maxResultsNoSpecifies the maximum number of results to return in a single call. The default value is 10, and the maximum value that can be requested is 1000. Note that the server may enforce a lower limit than requested, depending on resource availability or other internal constraints. If this happens, the result set may be truncated. Always check the maxResults value in the response to confirm how many results were actually returned.
projectKeyNoJira project key filter

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nextNoURL to the next page of results, or null if there are no more results.
totalNoIndicates the total number of items available across all pages.
isLastNoIndicates if this is the last page of results.
valuesNo
startAtYesIndicates the index of the first item returned in the page of results.
maxResultsYesIndicates the maximum number of results in this response. Note that the server may enforce a lower limit than requested, depending on resource availability or other internal constraints.
Install Server

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint/idempotentHint and destructiveHint false, so the safety profile is covered. The description repeats the schema's truncation note but then contradicts the default-pagination behavior by promising 'All priorities' for an empty parameter set.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

The description is organized with toolset, parameters, and examples, but the parameters section repeats the input schema nearly verbatim and the maxResults note is verbose. It is structured but not particularly concise.

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?

For a simple read-only list operation with an output schema and optional filters, most invocation details are present: defaults, projectKey format, and paging examples. However, the incorrect 'all priorities' example leaves a gap in how to page through or truly retrieve all results, so an agent could invoke it with the wrong expectation.

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 100%, so the baseline is 3, and the description's parameter section largely duplicates the schema. The examples add combination scenarios, but the third example assigns incorrect semantics to the default maxResults value, making the guidance unreliable.

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 opens with a specific verb and resource: 'Get Zephyr Test Case priorities with optional filters' and reinforces it with a 'Toolset: Priorities' label. This is enough to distinguish it from sibling zephyr_get_projects/zephyr_get_statuses, though it doesn't explicitly contrast with them.

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

Usage Guidelines3/5

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

Usage is implied through examples and optional-filter descriptions rather than stated explicitly. There is no direct statement of when to choose this over alternatives, and one example is misleading: {} is labeled 'Get all priorities' even though maxResults defaults to 10.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SmartBear/smartbear-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server