Files
Sam Morrow 776ddaefcc Update toolsnaps for cursor-based pagination
Update all tool snapshots to reflect the new cursor parameter
replacing page/perPage parameters.
2025-11-05 11:51:02 +01:00

45 lines
1.3 KiB
Plaintext

{
"annotations": {
"title": "Get issue details",
"readOnlyHint": true
},
"description": "Get information about a specific issue in a GitHub repository.",
"inputSchema": {
"properties": {
"cursor": {
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
"type": "string"
},
"issue_number": {
"description": "The number of the issue",
"type": "number"
},
"method": {
"description": "The read operation to perform on a single issue. \nOptions are: \n1. get - Get details of a specific issue.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues of the issue.\n4. get_labels - Get labels assigned to the issue.\n",
"enum": [
"get",
"get_comments",
"get_sub_issues",
"get_labels"
],
"type": "string"
},
"owner": {
"description": "The owner of the repository",
"type": "string"
},
"repo": {
"description": "The name of the repository",
"type": "string"
}
},
"required": [
"method",
"owner",
"repo",
"issue_number"
],
"type": "object"
},
"name": "issue_read"
}