get_network_activity
Retrieve captured network requests and responses to analyze web traffic during debugging sessions, with options to filter by request type and clear history.
Instructions
Recupera todas as requisições de rede capturadas
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clear | No | Limpar histórico após recuperação | |
| filterType | No | Filtrar por tipo | all |
Input Schema (JSON Schema)
{
"properties": {
"clear": {
"default": false,
"description": "Limpar histórico após recuperação",
"type": "boolean"
},
"filterType": {
"default": "all",
"description": "Filtrar por tipo",
"enum": [
"all",
"request",
"response"
],
"type": "string"
}
},
"type": "object"
}