proxy_session_status
Check the current runtime status of the persistent network traffic capture session to monitor proxy operations and ensure proper functionality.
Instructions
Get current persistent capture runtime status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/sessions.ts:67-74 (handler)The tool "proxy_session_status" is registered here. The handler calls proxyManager.getSessionStatus() to retrieve the current session status.
server.tool( "proxy_session_status", "Get current persistent capture runtime status.", {}, async () => ({ content: [{ type: "text", text: JSON.stringify({ status: "success", ...proxyManager.getSessionStatus() }) }], }), );