Skip to main content
Glama
SmartBear

SmartBear MCP server

Official
by SmartBear

Zephyr: Get Statuses

zephyr_get_statuses
Read-onlyIdempotent

Retrieve statuses of Zephyr test artifacts, including test cases, plans, cycles, and executions. Filter by project or status type to track testing states.

Instructions

Get statuses of different types of test artifacts in Zephyr

Toolset: Statuses

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

  • statusType (enum): Determines which type of entity the status belongs to.

Examples:

  1. Get the first 10 statuses

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

Expected Output: The first 10 statuses with their details from different projects and test artifact types

  1. Get 10 test case statuses

{
  "maxResults": 10,
  "statusType": "TEST_CASE"
}

Expected Output: A list of statuses related to test cases with their details

  1. Get five statuses from the project PROJ

{
  "maxResults": 5,
  "projectKey": "PROJ"
}

Expected Output: The first five statuses from the project PROJ with their details

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
statusTypeNoDetermines which type of entity the status belongs to.

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

A4.3/5.0
Behavior5/5

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

Annotations already cover readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds valuable runtime behavior: the server may enforce a lower maxResults limit, the result set may be truncated, and callers should verify the maxResults value in the response. It also documents the startAt/maxResults relationship, which is useful beyond the annotation metadata.

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 well-organized and front-loaded with its purpose, but it duplicates much of the input schema's parameter documentation, including the full maxResults caveat verbatim. The three examples are useful, but the expected-output lines are vague ('with their details'), making the text longer than necessary without proportionally increasing 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?

With zero required parameters, 100% schema coverage, an output schema, and annotations declaring the tool read-only and idempotent, the description fills the remaining gaps effectively. It explains defaults, filtering options, pagination/truncation behavior, and provides representative examples, so nothing critical is missing for an agent to invoke the tool correctly.

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?

Schema coverage is 100%, so the schema already documents all four parameters, including defaults, the enum values, and the server-limit caveat for maxResults. The description largely restates those schema definitions, and while the examples show useful filter combinations, they do not add substantial meaning beyond what the schema already provides.

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 opens with a specific verb+resource: 'Get statuses of different types of test artifacts in Zephyr,' which clearly identifies a distinct resource among the Zephyr getter tools. The statusType enum values (TEST_CASE, TEST_PLAN, TEST_CYCLE, TEST_EXECUTION) and the 'Toolset: Statuses' label further differentiate it from sibling tools like zephyr_get_priorities or zephyr_get_test_cycles.

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?

The description does not explicitly name alternatives or exclusions, but its examples create clear usage context: a default listing, filtering by statusType, and filtering by projectKey. This is sufficient for an agent to recognize when this read-only status lookup is the appropriate call, though no explicit 'use this instead of X' guidance is provided.

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