Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
List Sentry issues for a project
| Field | Value |
|---|---|
| Name | sentry__list_issues |
| Group | Integrations |
{
"type": "object",
"properties": {
"organizationSlug": {
"type": "string",
"description": "Sentry organization slug"
},
"projectSlug": {
"type": "string",
"description": "Sentry project slug"
},
"query": {
"type": "string",
"description": "Sentry issue search query, for example is:unresolved"
},
"statsPeriod": {
"type": "string",
"description": "Stats period, for example 24h, 14d, or 30d"
},
"limit": {
"type": "number",
"description": "Maximum number of issues to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
}
},
"required": [
"organizationSlug",
"projectSlug"
],
"description": "Input schema for the sentry__list_issues tool."
}