list_repo_issues
Retrieve and display issues from a specified repository to track bugs, feature requests, and tasks for project management and collaboration.
Instructions
list issues for a repository
Args: repo: repository identifier in 'owner/repo' format limit: maximum number of issues to return (1-100) cursor: optional pagination cursor
Returns: dict with list of issues and optional cursor
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | ||
| limit | No | maximum number of issues to return | |
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"anyOf": [
{
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "pagination cursor"
},
{
"type": "null"
}
],
"default": null
},
"limit": {
"default": 50,
"description": "maximum number of issues to return",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"repo": {
"description": "repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp')",
"type": "string"
}
},
"required": [
"repo"
],
"type": "object"
}