Skip to main content
Glama
qamary666

jira-aio-mcp-server

by qamary666

get_aio_folders

Retrieve a project's folder hierarchy in Jira AIO to reveal the organization of test cases.

Instructions

Get folder structure of a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectIdYesID проекта в AIO (например, 11502)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. The verb 'get' implies read-only, but it does not explicitly state side effects, return behavior, or error handling. The description lacks detail on what the structure includes (e.g., nested folders, names, IDs).

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

Conciseness5/5

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

The description is a single, direct sentence with no unnecessary words. It is appropriately terse for such a simple retrieval operation.

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 is minimal and lacks critical context such as when to use it, what the return format is, and whether it has side effects. For a simple get, it is functional but incomplete, especially given the lack of annotations.

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

Parameters5/5

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

The only parameter, projectId, is fully described with its semantic meaning ('ID in AIO') and a concrete example ('11502'). This goes beyond the schema's type and required fields, providing clear context for use.

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 clearly states the action ('Get') and the resource ('folder structure of a project'). It is distinguishable from sibling tools like get_aio_testcase or create_folder, though 'folder structure' could be more precise (e.g., whether it returns a tree or a flat list).

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 use this tool versus its siblings (e.g., when you need a folder hierarchy vs. a project list). No alternatives or conditions are mentioned.

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