list-issues
Retrieve and display issues from a GitHub repository by specifying owner, repo, state, and limit. Integrates with GitHub API via the MCP server for efficient issue management.
Instructions
List issues in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of issues to return | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name | |
state | No | Issue state |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of issues to return",
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"state": {
"description": "Issue state",
"enum": [
"open",
"closed",
"all"
],
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}