jira_create_issue
Generate a new JIRA issue by specifying project key, issue type, summary, and optional details like description, assignee, and priority using the JIRA MCP Server.
Instructions
Create a new JIRA issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee | No | Assignee account ID | |
description | No | Issue description | |
issueType | Yes | Issue type (e.g., Bug, Task, Story) | |
priority | No | Priority name | |
project | Yes | Project key | |
summary | Yes | Issue summary |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assignee": {
"description": "Assignee account ID",
"type": "string"
},
"description": {
"description": "Issue description",
"type": "string"
},
"issueType": {
"description": "Issue type (e.g., Bug, Task, Story)",
"type": "string"
},
"priority": {
"description": "Priority name",
"type": "string"
},
"project": {
"description": "Project key",
"type": "string"
},
"summary": {
"description": "Issue summary",
"type": "string"
}
},
"required": [
"project",
"issueType",
"summary"
],
"type": "object"
}