stop_network_capture
Terminate active network capture sessions to retrieve comprehensive traffic data including requests, responses, WebSocket frames, and streaming data with timestamps for analysis and processing.
Instructions
Stop the active network capture session and return all captured data. Returns comprehensive network traffic including requests, responses, WebSocket frames, and streaming data with timestamps and headers. Use this to analyze captured network activity or save data for later processing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Session ID obtained from initialize_session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "Session ID obtained from initialize_session",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}