Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.

issues_list

Request example
{ "method": "tools/call", "params": { "name": "issues_list", "arguments": { "project": [ "string" ], "org": "string", "service": "string", "since": "string", "limit": "string", "status": "string", "unhandled": true } } }
issues_listTOOL
List error issue groups sorted by frequency.
Groups errors by FingerprintHash and shows the count, exception type, message, status, and last seen time for each group. This is the starting point for debugging production errors. Use --since to control the time range and -s to filter by service.
After finding an issue, copy its fingerprint hash and run strada issues view <fingerprint> to see the full stack trace and recent events.
By default only 'open' issues are shown. Use --status to filter by triage state: open, resolved, muted, ignored, or all.
Parameters
project?string[]
Project slug override (repeatable, defaults to folder setup)
org?string
Organization override (defaults to folder setup)
service?string
Filter by service name
since?string
Time range, e.g. 1h, 24h, 7d (default: 24h)
limit?string
Max number of issue groups (default: 20)
status?string
Filter by triage status: open, resolved, muted, ignored, all (default: open)
unhandled?boolean
Show only unhandled errors