Batch Create Versions
jira_batch_create_versionsCreate multiple Jira project versions simultaneously by providing a JSON array with version details like name, dates, and description.
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
| Name | Required | Description | Default |
|---|---|---|---|
| project_key | Yes | Jira project key (e.g., 'PROJ', 'ACV2') | |
| versions | Yes | JSON 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"} ] |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |