list_pulse_items
List Pulse items — the workspace attention queue. Two kinds: attention is an observed problem a detector found (failing flows, a failed broadcast, an unsubscribe spike), recommendation is a proposed improvement. Read-only. Defaults to open items, ordered by severity then due time, the same order as the dashboard. Each item carries the measured evidence behind it; the conversations and log rows it counts stay where they are, reachable with read_messages and query_flow_logs. Use get_pulse_item for one item's full evidence and proposed change, and update_pulse_item to close one.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | `attention` for observed problems, `recommendation` for proposed improvements. Omit for both. | |
| page | No | 1-based page number. Defaults to 1. | |
| botId | No | Only items about this bot. Workspace-wide items, which belong to no single bot, are excluded when set. | |
| limit | No | Items per page, 1-100. Defaults to 20. | |
| status | No | Lifecycle state. Defaults to `open`; pass another value to read closed history. | |
| category | No | Exact detector category, e.g. "automation_execution_failures" or "broadcast_failed". Read the category off a listed item rather than guessing. | |
| severity | No | Only items at this severity. Omit for all. | |
| applicationId | No | Application (workspace) id. Optional: an application-scoped key (app_...) defaults to its own application, but a personal key (usr_...) has no default and omitting it fails with MCP_APPLICATION_REQUIRED. Call list_applications to get the id. | |
| includeDismissed | No | Include items the workspace has dismissed or snoozed. Defaults to false. |