Skip to main content
Glama
thamaraiselvam

Jira & Confluence MCP Server

jira_create_issue

Create a new Jira issue (Story, Bug, Task, etc.) in a project, with required summary and Markdown description, plus optional labels, priority, and assignee.

Instructions

Create a new Jira issue (Story, Bug, Task, etc.) in a given project. New issues are created unassigned by default. REQUIRED: Always provide a markdown-formatted description.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelsNoOptional. List of label strings to attach to the issue.
summaryYesThe issue summary / title.
priorityNoOptional. Priority name, e.g. 'Highest', 'High', 'Medium', 'Low', 'Lowest'.
issueTypeYesThe issue type name, e.g. 'Story', 'Bug', 'Task', 'Epic'.
projectKeyYesThe key of the Jira project to create the issue in (e.g. 'PROJ').
descriptionYesREQUIRED. Markdown-formatted description for the issue. Use headers (# ## ###), lists (*, -), bold (**text**), italic (*text*), code (`code`), links ([text](url)), tables, blockquotes (>), and horizontal rules (---). Automatically converted to Atlassian Document Format (ADF) for Jira Cloud.
assigneeAccountIdNoOptional. The Atlassian account ID of the user to assign the issue to. Leave empty/undefined for unassigned (default). When cloning issues, do NOT copy the assignee - new issues should remain unassigned.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.1.2

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations present, the description carries the full burden. It does disclose two useful non-obvious behaviors (default unassigned assignee, markdown auto-converted to ADF), but omits permission requirements, error/failure behavior, and what happens when fields like priority or labels are invalid.

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?

Three short sentences with zero waste: purpose first, default-behavior second, hard requirement last. Every sentence earns its place and the constraint is front-loaded.

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?

For a mutation tool with seven parameters, no annotations, and no output schema, the description covers required inputs and default assignment but leaves gaps around permission requirements, failure modes, and confirmation of what is created. Adequate but not complete.

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%, so all seven parameters are already documented in the schema (including markdown formatting rules and the assignee-cloning caveat). The description only restates the required-description requirement, adding no meaning beyond the structured fields; baseline 3 applies.

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?

States a specific verb (Create) and resource (Jira issue) plus concrete issue types (Story, Bug, Task), scoped to a project. This is easily distinguishable from the write-sibling jira_update_issue by verb, but it never explicitly names an alternative, which is what a 5 would require.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives one behavioral hint about when to omit assignee ('New issues are created unassigned by default' and the cloning caveat), which implies how to call it, but it never states when to use this tool versus jira_update_issue or jira_search. Usage is only implied.

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