create_issue
Create and manage JIRA issues with specified project key, summary, description, issue type, priority, assignee, and labels using the Personal JIRA MCP server.
Instructions
创建JIRA问题
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee | No | ||
description | No | ||
issue_type | No | Task | |
labels | No | ||
priority | No | ||
project_key | Yes | ||
summary | Yes |
Input Schema (JSON Schema)
{
"properties": {
"assignee": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Assignee"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"issue_type": {
"default": "Task",
"title": "Issue Type",
"type": "string"
},
"labels": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Labels"
},
"priority": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Priority"
},
"project_key": {
"title": "Project Key",
"type": "string"
},
"summary": {
"title": "Summary",
"type": "string"
}
},
"required": [
"project_key",
"summary"
],
"title": "create_issueArguments",
"type": "object"
}