query_session_telemetry
Extract specific failing network, console, mutation, interaction, or navigation events from a recorded browser session using category filters to surgically isolate errors without overwhelming your context.
Instructions
PROGRESSIVE DISCLOSURE DRILL-DOWN. If get_session_summary flags errors, use this tool to surgically extract the specific failing events without flooding your context window.
CATEGORIES: • network — All request/response events. Filters: "failed" | "slow" | "api" | "status:NNN" | URL text search • console — All console output. Filters: "errors" | "warnings" | text search • mutations — DOM mutation events. Filters: "structural" | "attributes" | elementId • interactions — Agent and human interactions. Filters: "clicks" | "typing" | "keys" • navigation — Page navigation history (no filters)
EXAMPLES: • query_session_telemetry({ category: "network", filter: "failed" }) — Get only failed network requests. • query_session_telemetry({ category: "console", filter: "errors" }) — Get only console errors. • query_session_telemetry({ category: "network", filter: "status:500" }) — Get only 500 errors. • query_session_telemetry({ category: "network", filter: "api/users" }) — Search by URL substring.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Filter within the category (see description for valid filter values per category) | |
| category | Yes | Telemetry category to drill into |