0.1.0npm · mcp-jira · current release
Observed 2026-08-22T19:12:39.682Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
jira_add_commentAdd a comment to a JIRA issueInput schema{
"type": "object",
"properties": {
"issueKey": {
"type": "string",
"description": "The JIRA issue key"
},
"comment": {
"type": "string",
"description": "Comment text"
}
},
"required": [
"issueKey",
"comment"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
jira_create_issueCreate a new JIRA issueInput schema{
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "Project key"
},
"issueType": {
"type": "string",
"description": "Issue type (e.g., Bug, Task, Story)"
},
"summary": {
"type": "string",
"description": "Issue summary"
},
"description": {
"type": "string",
"description": "Issue description"
},
"assignee": {
"type": "string",
"description": "Assignee account ID"
},
"priority": {
"type": "string",
"description": "Priority name"
}
},
"required": [
"project",
"issueType",
"summary"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
jira_get_issueGet details of a specific JIRA issueInput schema{
"type": "object",
"properties": {
"issueKey": {
"type": "string",
"description": "The JIRA issue key (e.g., PROJECT-123)"
}
},
"required": [
"issueKey"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
jira_searchSearch issues using JQL (JIRA Query Language)Input schema{
"type": "object",
"properties": {
"jql": {
"type": "string",
"description": "JQL query string"
},
"startAt": {
"type": "number",
"description": "Starting index for pagination (default: 0)"
},
"maxResults": {
"type": "number",
"description": "Maximum number of results (default: 50)"
}
},
"required": [
"jql"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
jira_transition_issueTransition an issue to a new statusInput schema{
"type": "object",
"properties": {
"issueKey": {
"type": "string",
"description": "The JIRA issue key"
},
"transitionId": {
"type": "string",
"description": "The transition ID"
},
"comment": {
"type": "string",
"description": "Optional comment for the transition"
}
},
"required": [
"issueKey",
"transitionId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
jira_update_issueUpdate an existing JIRA issueInput schema{
"type": "object",
"properties": {
"issueKey": {
"type": "string",
"description": "The JIRA issue key"
},
"summary": {
"type": "string",
"description": "New summary"
},
"description": {
"type": "string",
"description": "New description"
},
"assignee": {
"type": "string",
"description": "New assignee account ID"
},
"priority": {
"type": "string",
"description": "New priority name"
}
},
"required": [
"issueKey"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |