{ "name": "browser_read_network", "description": "Read the network requests the active page has made. Captured live through the DevTools Protocol — the same data the Network tab of DevTools shows: URL, HTTP method, status code, resource type, timing and size.", "requires_confirmation": false, "inputSchema": { "type": "object", "properties": { "filter": { "type": "string", "description": "Only return requests whose URL contains this substring, e.g. '/api/' or 'graphql'." }, "method": { "type": "string", "description": "Only return requests with this HTTP method, e.g. 'GET', 'POST', 'PUT', 'DELETE'." }, "limit": { "type": "integer", "description": "Maximum number of entries to return, most recent first (default 50)." }, "includeBody": { "type": "boolean", "description": "Include the response body of matching requests (default false)." } } } }