Chrome Tools MCP Server

capture_network_events

Monitor and record network events in a Chrome tab, filtering by request types or URL patterns. Configure duration and specify the tab ID to capture fetch and XHR requests for analysis or debugging.

Input Schema

NameRequiredDescriptionDefault
durationNoDuration in seconds to capture events (default: 10)
filtersNo
tabIdYesID of the Chrome tab to monitor

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "duration": { "description": "Duration in seconds to capture events (default: 10)", "maximum": 60, "minimum": 1, "type": "number" }, "filters": { "additionalProperties": false, "properties": { "types": { "description": "Types of requests to capture", "items": { "enum": [ "fetch", "xhr" ], "type": "string" }, "type": "array" }, "urlPattern": { "description": "Only capture URLs matching this pattern", "type": "string" } }, "type": "object" }, "tabId": { "description": "ID of the Chrome tab to monitor", "type": "string" } }, "required": [ "tabId" ], "type": "object" }

You must be authenticated.

Other Tools from Chrome Tools MCP Server

Related Tools

ID: rhq74imjee