Skip to main content
Glama

jira_batch_create_versions

Batch create multiple versions in a Jira project with a single API call. Provide project key and JSON array of version objects to specify names, start/release dates, and descriptions.

Instructions

Batch create multiple versions in a Jira project.

Args: ctx: The FastMCP context. project_key: The project key. versions: JSON array string of version objects.

Returns: JSON array of results, each with success flag, version or error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
versionsYesJSON array of version objects. Each object should contain: - name (required): Name of the version - startDate (optional): Start date (YYYY-MM-DD) - releaseDate (optional): Release date (YYYY-MM-DD) - description (optional): Description of the version Example: [ {"name": "v1.0", "startDate": "2025-01-01", "releaseDate": "2025-02-01", "description": "First release"}, {"name": "v2.0"} ]
project_keyYesJira project key (e.g., 'PROJ')

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It states that the tool takes a project key and a JSON array string of versions, and returns an array of results with success/error flags. However, it does not disclose whether failure of one version affects the others, whether the operation is atomic, or any side effects or rate considerations. For a batch mutation tool, this is a significant gap.

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 compact, structured with 'Args' and 'Returns' sections, and front-loads the core purpose in the first sentence. Every sentence provides necessary information without redundancy or fluff.

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?

The description covers the tool's purpose, inputs, and return format, and the schema fully documents parameters while an output schema exists. However, it does not explain partial failure behavior, potential duplicates, or when this tool should be preferred over single-version creation. Given its moderate complexity, the description is adequate but leaves some behavioral gaps.

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%, and the schema already provides detailed descriptions for project_key and versions, including an example JSON array. The description adds only the 'ctx' parameter (a framework-injected context) and restates the purpose of the other parameters. This does not significantly enhance understanding beyond the schema, so the baseline of 3 is appropriate.

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 'Batch create multiple versions in a Jira project', which is a specific verb (batch create) plus a specific resource (versions in a Jira project). This clearly distinguishes it from sibling tools like 'jira_create_version' (single version) and 'jira_get_project_versions' (retrieval), so the purpose is unambiguous.

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 phrase 'Batch create multiple versions' implies this is the tool to use when creating more than one version at a time, which is a clear context. However, it does not explicitly state when not to use it or mention the alternative single-create tool (jira_create_version), so it lacks exclusions but still provides clear context.

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

Install Server

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/SharkyND/mcp-atlassian'

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