Skip to main content
FuseFuse
IntegrationsJiraActions

Get Jira issue

Retrieve a Jira issue by id or key with an explicit field list.

Agent markdown

issues.get · Jira · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:jira-work
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issue_id_or_keystringYesminLength 1; maxLength 64
fieldsarray<string>NominItems 1; maxItems 12
fields[]stringYesenum summary | status | assignee | reporter | issuetype | project | priority | description | labels | created | updated | parent

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
keystringYesminLength 1; maxLength 64
selfstringNomaxLength 2048
summarystringNomaxLength 255
statusobjectNoadditionalProperties false
status.idstringNominLength 1; maxLength 64
status.namestringNomaxLength 128
status.category_keystringNomaxLength 64
assigneeobjectNoadditionalProperties false
assignee.account_idstringNominLength 1; maxLength 128
assignee.display_namestringNomaxLength 255
assignee.activebooleanNo
reporterobjectNoadditionalProperties false
reporter.account_idstringNominLength 1; maxLength 128
reporter.display_namestringNomaxLength 255
reporter.activebooleanNo
issuetypeobjectNoadditionalProperties false
issuetype.idstringNominLength 1; maxLength 64
issuetype.keystringNominLength 1; maxLength 64
issuetype.namestringNomaxLength 255
projectobjectNoadditionalProperties false
project.idstringNominLength 1; maxLength 64
project.keystringNominLength 1; maxLength 64
project.namestringNomaxLength 255
priorityobjectNoadditionalProperties false
priority.idstringNominLength 1; maxLength 64
priority.keystringNominLength 1; maxLength 64
priority.namestringNomaxLength 255
labelsarray<string>NomaxItems 50
labels[]stringYesmaxLength 255
descriptionobjectNoadditionalProperties false
description.typestringYesenum doc
description.versionintegerYesminimum 1; maximum 1
description.contentarray<object>YesminItems 1; maxItems 32
description.content[]objectYesadditionalProperties false
description.content[].typestringYesenum paragraph | heading | bulletList | orderedList
description.content[].attrsobjectNoadditionalProperties false
description.content[].attrs.levelintegerNominimum 1; maximum 6
description.content[].contentarray<object>NomaxItems 64
description.content[].content[]objectYesadditionalProperties false
description.content[].content[].typestringYesenum text | hardBreak | listItem | paragraph | heading
description.content[].content[].textstringNominLength 1; maxLength 2000
description.content[].content[].marksarray<object>NomaxItems 8
description.content[].content[].marks[]objectYesadditionalProperties false
description.content[].content[].marks[].typestringYesenum strong | em | code | underline | strike | link
description.content[].content[].marks[].attrsobjectNoadditionalProperties false
description.content[].content[].marks[].attrs.hrefstringNominLength 8; maxLength 2048; pattern ^https://; format uri
description.content[].content[].attrsobjectNoadditionalProperties false
description.content[].content[].attrs.levelintegerNominimum 1; maximum 6
description.content[].content[].contentarray<object>NomaxItems 64
description.content[].content[].content[]objectYesadditionalProperties false
description.content[].content[].content[].typestringYesenum text | hardBreak | paragraph | heading
description.content[].content[].content[].textstringNominLength 1; maxLength 2000
description.content[].content[].content[].marksarray<object>NomaxItems 8
description.content[].content[].content[].marks[]objectYesadditionalProperties false
description.content[].content[].content[].marks[].typestringYesenum strong | em | code | underline | strike | link
description.content[].content[].content[].marks[].attrsobjectNoadditionalProperties false
description.content[].content[].content[].marks[].attrs.hrefstringNominLength 8; maxLength 2048; pattern ^https://; format uri
description.content[].content[].content[].attrsobjectNoadditionalProperties false
description.content[].content[].content[].attrs.levelintegerNominimum 1; maximum 6
description.content[].content[].content[].contentarray<object>NomaxItems 64
description.content[].content[].content[].content[]objectYesadditionalProperties false
description.content[].content[].content[].content[].typestringYesenum text | hardBreak
description.content[].content[].content[].content[].textstringNominLength 1; maxLength 2000
description.content[].content[].content[].content[].marksarray<object>NomaxItems 8
description.content[].content[].content[].content[].marks[]objectYesadditionalProperties false
description.content[].content[].content[].content[].marks[].typestringYesenum strong | em | code | underline | strike | link
description.content[].content[].content[].content[].marks[].attrsobjectNoadditionalProperties false
description.content[].content[].content[].content[].marks[].attrs.hrefstringNominLength 8; maxLength 2048; pattern ^https://; format uri
createdstringNomaxLength 64
updatedstringNomaxLength 64
parentobjectNoadditionalProperties false
parent.idstringNominLength 1; maxLength 64
parent.keystringNominLength 1; maxLength 64
parent.namestringNomaxLength 255

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "issue_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "summary",
          "status",
          "assignee",
          "reporter",
          "issuetype",
          "project",
          "priority",
          "description",
          "labels",
          "created",
          "updated",
          "parent"
        ]
      },
      "minItems": 1,
      "maxItems": 12
    }
  },
  "required": [
    "issue_id_or_key"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "self": {
      "type": "string",
      "maxLength": 2048
    },
    "summary": {
      "type": "string",
      "maxLength": 255
    },
    "status": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "name": {
          "type": "string",
          "maxLength": 128
        },
        "category_key": {
          "type": "string",
          "maxLength": 64
        }
      }
    },
    "assignee": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "account_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 128
        },
        "display_name": {
          "type": "string",
          "maxLength": 255
        },
        "active": {
          "type": "boolean"
        }
      }
    },
    "reporter": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "account_id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 128
        },
        "display_name": {
          "type": "string",
          "maxLength": 255
        },
        "active": {
          "type": "boolean"
        }
      }
    },
    "issuetype": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "key": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "name": {
          "type": "string",
          "maxLength": 255
        }
      }
    },
    "project": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "key": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "name": {
          "type": "string",
          "maxLength": 255
        }
      }
    },
    "priority": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "key": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "name": {
          "type": "string",
          "maxLength": 255
        }
      }
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 255
      },
      "maxItems": 50
    },
    "description": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "doc"
          ]
        },
        "version": {
          "type": "integer",
          "minimum": 1,
          "maximum": 1
        },
        "content": {
          "type": "array",
          "items": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "type": {
                "type": "string",
                "enum": [
                  "paragraph",
                  "heading",
                  "bulletList",
                  "orderedList"
                ]
              },
              "attrs": {
                "type": "object",
                "additionalProperties": false,
                "properties": {
                  "level": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 6
                  }
                }
              },
              "content": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "text",
                        "hardBreak",
                        "listItem",
                        "paragraph",
                        "heading"
                      ]
                    },
                    "text": {
                      "type": "string",
                      "minLength": 1,
                      "maxLength": 2000
                    },
                    "marks": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "type": {
                            "type": "string",
                            "enum": [
                              "strong",
                              "em",
                              "code",
                              "underline",
                              "strike",
                              "link"
                            ]
                          },
                          "attrs": {
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "href": {
                                "type": "string",
                                "minLength": 8,
                                "maxLength": 2048,
                                "pattern": "^https://",
                                "format": "uri"
                              }
                            }
                          }
                        },
                        "required": [
                          "type"
                        ]
                      },
                      "maxItems": 8
                    },
                    "attrs": {
                      "type": "object",
                      "additionalProperties": false,
                      "properties": {
                        "level": {
                          "type": "integer",
                          "minimum": 1,
                          "maximum": 6
                        }
                      }
                    },
                    "content": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "additionalProperties": false,
                        "properties": {
                          "type": {
                            "type": "string",
                            "enum": [
                              "text",
                              "hardBreak",
                              "paragraph",
                              "heading"
                            ]
                          },
                          "text": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2000
                          },
                          "marks": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "type": {
                                  "type": "string",
                                  "enum": [
                                    "strong",
                                    "em",
                                    "code",
                                    "underline",
                                    "strike",
                                    "link"
                                  ]
                                },
                                "attrs": {
                                  "type": "object",
                                  "additionalProperties": false,
                                  "properties": {
                                    "href": {
                                      "type": "string",
                                      "minLength": 8,
                                      "maxLength": 2048,
                                      "pattern": "^https://",
                                      "format": "uri"
                                    }
                                  }
                                }
                              },
                              "required": [
                                "type"
                              ]
                            },
                            "maxItems": 8
                          },
                          "attrs": {
                            "type": "object",
                            "additionalProperties": false,
                            "properties": {
                              "level": {
                                "type": "integer",
                                "minimum": 1,
                                "maximum": 6
                              }
                            }
                          },
                          "content": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "additionalProperties": false,
                              "properties": {
                                "type": {
                                  "type": "string",
                                  "enum": [
                                    "text",
                                    "hardBreak"
                                  ]
                                },
                                "text": {
                                  "type": "string",
                                  "minLength": 1,
                                  "maxLength": 2000
                                },
                                "marks": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "additionalProperties": false,
                                    "properties": {
                                      "type": {
                                        "type": "string",
                                        "enum": [
                                          "strong",
                                          "em",
                                          "code",
                                          "underline",
                                          "strike",
                                          "link"
                                        ]
                                      },
                                      "attrs": {
                                        "type": "object",
                                        "additionalProperties": false,
                                        "properties": {
                                          "href": {
                                            "type": "string",
                                            "minLength": 8,
                                            "maxLength": 2048,
                                            "pattern": "^https://",
                                            "format": "uri"
                                          }
                                        }
                                      }
                                    },
                                    "required": [
                                      "type"
                                    ]
                                  },
                                  "maxItems": 8
                                }
                              },
                              "required": [
                                "type"
                              ]
                            },
                            "maxItems": 64
                          }
                        },
                        "required": [
                          "type"
                        ]
                      },
                      "maxItems": 64
                    }
                  },
                  "required": [
                    "type"
                  ]
                },
                "maxItems": 64
              }
            },
            "required": [
              "type"
            ]
          },
          "minItems": 1,
          "maxItems": 32
        }
      },
      "required": [
        "type",
        "version",
        "content"
      ]
    },
    "created": {
      "type": "string",
      "maxLength": 64
    },
    "updated": {
      "type": "string",
      "maxLength": 64
    },
    "parent": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "key": {
          "type": "string",
          "minLength": 1,
          "maxLength": 64
        },
        "name": {
          "type": "string",
          "maxLength": 255
        }
      }
    }
  },
  "required": [
    "id",
    "key"
  ]
}