Skip to main content
Glama

mcp-jira-stdio

jira_create_issue

Create new Jira issues with detailed specifications including project, issue type, priority, assignee, and custom fields. Automatically formats plain text descriptions to structured ADF format with headings and lists.

Instructions

Creates a new Jira issue in the specified project. Supports setting issue type, priority, assignee, labels, components, and custom fields. Description accepts plain text and is auto-formatted to ADF: lines ending with ":" become headings, numbered lines create ordered lists, and URLs are linkified. For required custom fields, supply them via customFields (e.g., { "customfield_12345": { id: "..." } }). Returns the created issue with all details.

Input Schema

NameRequiredDescriptionDefault
assigneeNoAssignee account ID (optional)
componentsNoComponent names (optional)
customFieldsNoAdditional Jira fields, e.g. { "customfield_10071": value }. Use this to set required custom fields.
descriptionNoDetailed issue description (optional). Accepts plain text (auto-formatted to ADF) or an ADF document.
issueTypeYesIssue type name (e.g., Bug, Story, Task, Epic)
labelsNoIssue labels (optional)
priorityNoIssue priority name (e.g., High, Medium, Low) - optional
projectKeyYesProject key where the issue will be created
returnIssueNoIf false, returns only the issue key without fetching full details
summaryYesIssue summary/title

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "Assignee account ID (optional)", "type": "string" }, "components": { "default": [], "description": "Component names (optional)", "items": { "type": "string" }, "type": "array" }, "customFields": { "additionalProperties": true, "description": "Additional Jira fields, e.g. { \"customfield_10071\": value }. Use this to set required custom fields.", "type": "object" }, "description": { "anyOf": [ { "type": "string" }, { "type": "object" } ], "description": "Detailed issue description (optional). Accepts plain text (auto-formatted to ADF) or an ADF document." }, "issueType": { "description": "Issue type name (e.g., Bug, Story, Task, Epic)", "type": "string" }, "labels": { "default": [], "description": "Issue labels (optional)", "items": { "type": "string" }, "type": "array" }, "priority": { "description": "Issue priority name (e.g., High, Medium, Low) - optional", "type": "string" }, "projectKey": { "description": "Project key where the issue will be created", "type": "string" }, "returnIssue": { "default": true, "description": "If false, returns only the issue key without fetching full details", "type": "boolean" }, "summary": { "description": "Issue summary/title", "minLength": 1, "type": "string" } }, "required": [ "projectKey", "summary", "issueType" ], "type": "object" }

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

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