Skip to main content
Glama
raalarcon9705

raalarcon-jira-mcp-server

create_issue

Create new Jira issues or subtasks with required details like project key, summary, and issue type. Returns the issue key, ID, and URL upon creation.

Instructions

Create a new Jira issue (Bug, Story, Task, Epic, etc.) or subtask. Returns the created issue key, ID, and URL. Use get_issue_types to find valid issueType values for the project. To create a subtask, specify the parent issue key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectKeyYesProject key (e.g., "PROJ") where the issue will be created. Use get_projects to find available keys.
summaryYesIssue title/summary (max 255 characters). This is the main identifier shown in issue lists.
descriptionNoDetailed issue description. Supports plain text, Markdown, or Atlassian Document Format (ADF) for rich formatting. Markdown will be automatically converted to ADF. For mentions, use format: @[accountId:displayName] (get accountId from get_users tool).
issueTypeYesIssue type name (e.g., "Bug", "Story", "Task", "Epic"). Use get_issue_types to find valid values.
priorityNoPriority level: "Highest", "High", "Medium", "Low", "Lowest". Defaults to project default if not specified.
assigneeNoAccount ID of the user to assign the issue to. Use get_users to find account IDs.
parentNoIssue key of the parent issue (e.g., "PROJ-123"). Required to create a subtask.
labelsNoArray of label names for categorization and filtering (e.g., ["bug", "urgent", "frontend"]).
componentsNoArray of component names that this issue affects (e.g., ["API", "Database", "UI"]).
fixVersionsNoArray of version names where this issue will be fixed (e.g., ["v1.2", "v2.0"]).
customFieldsNoCustom field values as key-value pairs. Field keys are project-specific.
Behavior3/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 states this is a creation operation (implying mutation/write), mentions the return values (issue key, ID, URL), and provides some context about subtask creation. However, it lacks details about permissions needed, error conditions, rate limits, or whether the operation is idempotent.

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 appropriately sized with three sentences that are front-loaded with the core purpose. Each sentence adds value: the first states what the tool does, the second mentions return values, and the third provides usage guidance. There's no wasted text, though it could be slightly more structured.

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 11 parameters, no annotations, and no output schema, the description is adequate but has gaps. It covers the basic purpose and some usage context, but doesn't address behavioral aspects like error handling, authentication requirements, or what happens on failure. The lack of output schema means the description should ideally explain return values more thoroughly.

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 the schema already documents all 11 parameters thoroughly. The description adds minimal value beyond the schema - it only mentions that 'issueType' values can be found via 'get_issue_types' and that 'parent' is required for subtasks, which are already covered in the schema descriptions. Baseline 3 is appropriate when the schema does the heavy lifting.

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 clearly states the verb ('Create') and resource ('new Jira issue'), specifies the types of issues that can be created (Bug, Story, Task, Epic, etc.), and distinguishes subtask creation. It differentiates from siblings like 'update_issue' by focusing on creation rather than modification.

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 description provides clear context for when to use this tool (creating issues or subtasks) and references sibling tools like 'get_issue_types' and 'get_projects' for prerequisite information. However, it doesn't explicitly state when NOT to use it (e.g., vs. 'update_issue' for modifications) or mention alternatives for similar operations.

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/raalarcon9705/jira-mcp'

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