| { | |
| "name": "browser_network_requests", | |
| "description": "Returns a numbered list of network requests since loading the page. Use browser_network_request with the number to get full details.", | |
| "inputSchema": { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "type": "object", | |
| "properties": { | |
| "static": { | |
| "default": false, | |
| "description": "Whether to include successful static resources like images, fonts, scripts, etc. Defaults to false.", | |
| "type": "boolean" | |
| }, | |
| "filter": { | |
| "description": "Only return requests whose URL matches this regexp (e.g. \"/api/.*user\").", | |
| "type": "string" | |
| }, | |
| "filename": { | |
| "description": "Filename to save the network requests to. If not provided, requests are returned as text.", | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "static" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |