get_jira_issue
Retrieve detailed information for a specific Jira issue by providing its issue key, enabling efficient issue tracking and management on the Jira MCP Server.
Instructions
Get details for a specific Jira issue by key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_key | Yes | The issue key (e.g., PROJECT-123) |
Input Schema (JSON Schema)
{
"properties": {
"issue_key": {
"description": "The issue key (e.g., PROJECT-123)",
"type": "string"
}
},
"required": [
"issue_key"
],
"type": "object"
}