get_flow_details
Retrieve detailed HTTP request/response data from a mitmproxy session, including method, URL, status codes, and optional full content, by specifying session ID and flow indexes.
Instructions
Lists HTTP requests/responses from a mitmproxy capture session, showing method, URL, and status codes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_indexes | Yes | The indexes of the flows | |
include_content | No | Whether to include full content in the response (default: true) | |
session_id | Yes | The ID of the session |
Input Schema (JSON Schema)
{
"properties": {
"flow_indexes": {
"description": "The indexes of the flows",
"items": {
"type": "integer"
},
"type": "array"
},
"include_content": {
"default": true,
"description": "Whether to include full content in the response (default: true)",
"type": "boolean"
},
"session_id": {
"description": "The ID of the session",
"type": "string"
}
},
"required": [
"session_id",
"flow_indexes"
],
"type": "object"
}