sentry_list_issues
Retrieve and list project issues from Sentry using a project slug and optional search query for targeted error monitoring and debugging.
Instructions
List issues for a project
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| projectSlug | Yes | Project slug/identifier | |
| query | No | Search query (e.g., 'is:unresolved', 'level:error') | 
Input Schema (JSON Schema)
{
  "properties": {
    "projectSlug": {
      "description": "Project slug/identifier",
      "type": "string"
    },
    "query": {
      "description": "Search query (e.g., 'is:unresolved', 'level:error')",
      "type": "string"
    }
  },
  "required": [
    "projectSlug"
  ],
  "type": "object"
}