get_network_requests
Retrieve captured network requests from connected React Native apps to analyze URL, method, status, and timing data for debugging and monitoring purposes.
Instructions
Retrieve captured network requests from connected React Native app. Shows URL, method, status, and timing. Tip: Use summary=true first for stats overview (counts by method, status, domain), then fetch specific requests as needed.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| maxRequests | No | Maximum number of requests to return (default: 50) | |
| method | No | Filter by HTTP method (GET, POST, PUT, DELETE, etc.) | |
| urlPattern | No | Filter by URL pattern (case-insensitive substring match) | |
| status | No | Filter by HTTP status code (e.g., 200, 401, 500) | |
| format | No | Output format: 'text' or 'tonl' (default, compact token-optimized format, ~30-50% smaller) | tonl |
| summary | No | Return statistics only (count, methods, domains, status codes). Use for quick overview. |