list_issues
Retrieve and display error tracking issues from Glitchtip, allowing filtering by project and setting result limits to monitor and debug application errors effectively.
Instructions
List issues in the organization or a specific project (requires event:read scope)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of issues to return (default: 25) | |
project_slug | No | Optional project slug to filter issues by project |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of issues to return (default: 25)",
"type": "number"
},
"project_slug": {
"description": "Optional project slug to filter issues by project",
"type": "string"
}
},
"type": "object"
}