get_issue_attachments
Retrieve and optionally download all attachments for a specified JIRA issue from the Personal JIRA MCP server, streamlining file management and access.
Instructions
获取JIRA问题的所有附件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
download | No | ||
issue_key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"download": {
"default": false,
"title": "Download",
"type": "boolean"
},
"issue_key": {
"title": "Issue Key",
"type": "string"
}
},
"required": [
"issue_key"
],
"title": "get_issue_attachmentsArguments",
"type": "object"
}