Skip to main content
Glama
mako10k

Web Proxy MCP Server

by mako10k

proxy_get_performance_metrics

Retrieve proxy server performance metrics to monitor traffic, analyze data, and manage browser setup. Optionally reset metrics after collection.

Instructions

Get proxy server performance metrics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
resetNoReset metrics after retrieval

Implementation Reference

  • Handler logic retrieves performance metrics from proxyServer, optionally resets them, and returns formatted text response.
    case 'proxy_get_performance_metrics': const metrics = this.proxyServer.getMetrics(); if (args.reset) { this.proxyServer.resetMetrics(); } return { content: [{ type: "text", text: `⚡ Performance Metrics\n\n${JSON.stringify(metrics, null, 2)}${args.reset ? '\n\n✅ Metrics reset' : ''}` }] };
  • Tool definition including name, description, and input schema with optional 'reset' boolean parameter.
    proxy_get_performance_metrics: { name: "proxy_get_performance_metrics", description: "Get proxy server performance metrics", inputSchema: { type: "object", properties: { reset: { type: "boolean", description: "Reset metrics after retrieval", default: false } } } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mako10k/mcp-web-proxy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server