工具 API

search_issues

Search for grouped issues/problems in Sentry - returns a LIST of issues, NOT counts or aggregations. Uses AI to translate natural language queries into Sentry issue search syntax. Returns grouped issues with metadata like title, status, and user count. USE THIS TOOL WHEN USERS WANT: - A LIST of issues: 'show me issues', 'what problems do we have' - Filtered issue lists: 'unresolved issues', 'critical bugs' - Issues by impact: 'errors affecting more than 100 users' - Issues by assignment: 'issues assigned to me' - User feedback: 'show me user feedback', 'feedback from last week' DO NOT USE FOR COUNTS/AGGREGATIONS: - 'how many errors' → use search_events - 'count of issues' → use search_events - 'total number of errors today' → use search_events - 'sum/average/statistics' → use search_events ALSO DO NOT USE FOR: - Individual error events with timestamps → use search_events - Details about a specific issue ID or Sentry issue URL → use get_sentry_resource REMEMBER: This tool returns a LIST of issues, not counts or statistics! <examples> search_issues(organizationSlug='my-org', naturalLanguageQuery='critical bugs from last week') search_issues(organizationSlug='my-org', naturalLanguageQuery='unhandled errors affecting 100+ users') search_issues(organizationSlug='my-org', naturalLanguageQuery='issues assigned to me') search_issues(organizationSlug='my-org', naturalLanguageQuery='user feedback from production') </examples> <hints> - If the user passes a parameter in the form of name/otherName, it's likely in the format of <organizationSlug>/<projectSlugOrId>. - Parse org/project notation directly without calling find_organizations or find_projects. - The projectSlugOrId parameter accepts both project slugs (e.g., 'my-project') and numeric IDs (e.g., '123456'). </hints>

devOAuth1 积分

调用信息

工具标识
sentry-mcp.search_issues
服务提供方
Sentry
平均响应
0 ms
近 7 天调用
0

输入参数

organizationSlug必填

The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.

naturalLanguageQuery必填

Natural language description of issues to search for

projectSlugOrId

The project's slug or numeric ID (optional)

regionUrl

The region URL for the organization you're querying, if known. For Sentry's Cloud Service (sentry.io), this is typically the region-specific URL like 'https://us.sentry.io'. For self-hosted Sentry installations, this parameter is usually not needed and should be omitted. You can find the correct regionUrl from the organization details using the `find_organizations()` tool.

limit

Maximum number of issues to return

includeExplanation

Include explanation of how the query was translated