📸 ScreenshotsMCP

browser_network_requests

Get the full network request waterfall with timing, size, and status codes.

Parameters

ParameterTypeRequiredDefaultDescription
sessionIdstringYesSession ID from browser_navigate
resourceTypestringNoFilter by type: script, stylesheet, image, font, fetch, xhr
minDurationnumberNo0Only show requests slower than this (ms)
limitnumberNo50Max number of requests to return

Example

Show me all network requests that took longer than 200ms
Show me all the image requests on this page

Response

For each request:

  • Status code and HTTP method
  • Duration in milliseconds
  • Transfer size in KB
  • Resource type (script, image, fetch, etc.)
  • URL

Also includes summary stats: total requests, total transfer size, average duration, slowest request.

Notes

  • Network requests are captured from the moment the session starts
  • Includes requests from navigation, AJAX calls, lazy-loaded resources, etc.
  • Use minDuration to find slow requests that impact performance

On this page