proxy_status
Check the proxy server's current operational status, port configuration, upstream settings, rule count, and traffic statistics to monitor network interception and modification activities.
Instructions
Get proxy running state, port, upstream config, rule count, and traffic count.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/lifecycle.ts:83-95 (handler)The handler for 'proxy_status' tool which retrieves proxy status using 'proxyManager.getStatus()'.
server.tool( "proxy_status", "Get proxy running state, port, upstream config, rule count, and traffic count.", {}, async () => { return { content: [{ type: "text", text: JSON.stringify({ status: "success", ...proxyManager.getStatus() }), }], }; }, );