GitHub
list_issues
List issues in a GitHub repository. For pagination, use the 'endCursor' from the previous response's 'pageInfo' in the 'after' parameter.
Remote github
Other tools also called list_issues?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"repo": {
"type": "string",
"description": "Repository name"
},
"after": {
"type": "string",
"description": "Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs."
},
"owner": {
"type": "string",
"description": "Repository owner"
},
"since": {
"type": "string",
"description": "Filter by date (ISO 8601 timestamp)"
},
"state": {
"enum": [
"OPEN",
"CLOSED"
],
"type": "string",
"description": "Filter by state, by default both open and closed issues are returned when not provided"
},
"labels": {
"type": "array",
"items": {
"type": "string"
},
"description": "Filter by labels"
},
"orderBy": {
"enum": [
"CREATED_AT",
"UPDATED_AT",
"COMMENTS"
],
"type": "string",
"description": "Order issues by field. If provided, the 'direction' also needs to be provided."
},
"perPage": {
"type": "number",
"maximum": 100,
"minimum": 1,
"description": "Results per page for pagination (min 1, max 100)"
},
"direction": {
"enum": [
"ASC",
"DESC"
],
"type": "string",
"description": "Order direction. If provided, the 'orderBy' also needs to be provided."
}
}
}