GitHub
issue_read
Get information about a specific issue in a GitHub repository.
Remote github
Other tools also called issue_read?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"minimum": 1,
"description": "Page number for pagination (min 1)"
},
"repo": {
"type": "string",
"description": "The name of the repository"
},
"owner": {
"type": "string",
"description": "The owner of the repository"
},
"method": {
"enum": [
"get",
"get_comments",
"get_sub_issues",
"get_labels"
],
"type": "string",
"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"
},
"perPage": {
"type": "number",
"maximum": 100,
"minimum": 1,
"description": "Results per page for pagination (min 1, max 100)"
},
"issue_number": {
"type": "number",
"description": "The number of the issue"
}
}
}