browser.network.inspect
Analyze and debug browser network requests by inspecting HTTP errors (4xx/5xx), payloads, and request sequences. Filter by URL, specify details like headers and timestamps, and troubleshoot issues missed by console tools.
Instructions
Inspect recent browser network requests (DevTools-like). Use for debugging HTTP failures (4xx/5xx), payloads, and request sequences. Note: This captures network errors that console tools miss.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
details | Yes | Fields to include for each entry. 'timestamp' is useful for chronological ordering. | |
limit | No | Max entries to return | |
orderBy | No | Sort field | timestamp |
orderDirection | No | Sort direction | desc |
timeOffset | No | Relative window in seconds (e.g., 300 = last 5 minutes, max 86400). | |
urlFilter | Yes | Substring or pattern to filter request URLs. Tips: Use partial matches; try singular/plural variants if empty. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"details": {
"description": "Fields to include for each entry. 'timestamp' is useful for chronological ordering.",
"items": {
"enum": [
"url",
"method",
"status",
"timestamp",
"requestHeaders",
"responseHeaders",
"requestBody",
"responseBody"
],
"type": "string"
},
"minItems": 1,
"type": "array"
},
"limit": {
"default": 20,
"description": "Max entries to return",
"type": "number"
},
"orderBy": {
"default": "timestamp",
"description": "Sort field",
"enum": [
"timestamp",
"url"
],
"type": "string"
},
"orderDirection": {
"default": "desc",
"description": "Sort direction",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"timeOffset": {
"description": "Relative window in seconds (e.g., 300 = last 5 minutes, max 86400).",
"type": "number"
},
"urlFilter": {
"description": "Substring or pattern to filter request URLs. Tips: Use partial matches; try singular/plural variants if empty.",
"type": "string"
}
},
"required": [
"urlFilter",
"details"
],
"type": "object"
}