mcp-jira-stdioTools Reference
jira_create_issue
Create a new Jira issue
jira_create_issue
Create a new issue in a Jira project with specified fields.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
projectKey | string | Yes | Project key (e.g., "PROJ") |
summary | string | Yes | Issue summary/title |
issueType | string | Yes | Issue type (Bug, Task, Story, etc.) |
description | string | No | Issue description |
assignee | string | No | Assignee account ID |
priority | string | No | Priority level |
labels | string[] | No | Array of labels |
components | string[] | No | Array of component names |
Example
{
"tool": "jira_create_issue",
"arguments": {
"projectKey": "PROJ",
"summary": "Fix login bug",
"issueType": "Bug",
"description": "Users cannot log in with SSO",
"priority": "High"
}
}Full Example
{
"tool": "jira_create_issue",
"arguments": {
"projectKey": "PROJ",
"summary": "Implement user dashboard",
"issueType": "Story",
"description": "Create a dashboard showing user statistics and recent activity",
"priority": "Medium",
"labels": ["frontend", "dashboard"],
"components": ["Web App"]
}
}Response
{
"id": "10001",
"key": "PROJ-123",
"self": "https://your-domain.atlassian.net/rest/api/3/issue/10001"
}Tips
- Use
jira_get_create_metato discover available fields and their allowed values - Use
jira_get_issue_typesto find valid issue types for a project - Use
jira_get_prioritiesto list available priority levels