proxy_server_status
Monitor and retrieve proxy server status and statistics, including SSL bumping status, for automated traffic analysis on the Web Proxy MCP Server.
Instructions
Get proxy server status and statistics including SSL bumping status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/tool-handlers.js:263-276 (handler)Handler implementation for 'proxy_server_status' tool. Retrieves proxy server status, target statistics, and traffic entry count, formats as JSON, and returns as text content.case 'proxy_server_status': const status = this.proxyServer.getStatus(); const stats = this.targetManager.getStats(); return { content: [{ type: "text", text: `📊 Proxy Server Status\n\n${JSON.stringify({ ...status, targetStats: stats, trafficEntries: this.trafficAnalyzer ? this.trafficAnalyzer.getEntryCount() : 0 }, null, 2)}` }] };
- Schema definition for 'proxy_server_status' tool, including name, description, and empty input schema (no parameters required).proxy_server_status: { name: "proxy_server_status", description: "Get proxy server status and statistics including SSL bumping status", inputSchema: { type: "object", properties: {} } },