Skip to main content
Glama
qamary666

jira-aio-mcp-server

by qamary666

get_aio_testcase

Retrieve detailed test case information from Jira AIO Test Case Management by specifying the project key and test case key.

Instructions

Get test case details from AIO

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectKeyYesКлюч проекта в AIO (например, AT)
testCaseKeyYesКлюч тест-кейса (например, AT-TC-9)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Get test case details', which implies a read operation, but does not mention return format, error behavior, required permissions, or anything about side effects.

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 a single concise sentence with no redundancy. It is appropriately short for a simple getter tool, though it could include more contextual value.

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?

The description does not explain how it differs from search_aio_testcase, what 'details' entails, or what the caller should expect as output. Given no output schema or annotations, this is a significant gap for a tool with minimal documentation.

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 description coverage is 100%: both projectKey and testCaseKey are described with examples. The description adds no additional parameter meaning, so a baseline score of 3 is appropriate.

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 states a specific verb ('Get'), resource ('test case details'), and platform ('AIO'). It is clear and distinct from siblings like search_aio_testcase, though it does not explicitly contrast them.

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?

No guidance is provided about when to use this tool versus search_aio_testcase or other sibling tools. The intended usage is only implied by the name and required parameters.

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