Smithery

browser_network_requests

Get the full network request waterfall with timing data. Shows every request made by the page — URLs, methods, status codes, resource types, durations, and sizes. Use for performance analysis and debugging.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called browser_network_requests? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "default": 100,
      "maximum": 200,
      "minimum": 1,
      "description": "Max number of requests to return"
    },
    "sessionId": {
      "type": "string",
      "description": "Session ID from browser_navigate"
    },
    "minDuration": {
      "type": "number",
      "default": 0,
      "description": "Only show requests slower than this (ms)"
    },
    "resourceType": {
      "type": "string",
      "description": "Filter by resource type: 'document', 'stylesheet', 'script', 'image', 'font', 'xhr', 'fetch'. Omit for all."
    }
  }
}