Skip to main content
Glama
mako10k

Web Proxy MCP Server

by mako10k

proxy_list_targets

List and filter target domains by status to monitor proxy traffic and analyze web activity through the Web Proxy MCP Server.

Instructions

List all target domains and their status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoFilter targets by statusall

Implementation Reference

  • The handler case in _handleTargetTool method that implements proxy_list_targets by calling targetManager.listTargets and formatting the response as text content.
    case 'proxy_list_targets': const targets = this.targetManager.listTargets(args.status); const targetList = targets.map(t => `• ${t.domain} (${t.status}) - ${t.description || 'No description'}` ).join('\n'); return { content: [{ type: "text", text: `📋 Proxy Targets (${targets.length})\n\n${targetList || 'No targets configured'}\n\nStats: ${JSON.stringify(this.targetManager.getStats(), null, 2)}` }] };
  • The tool definition including name, description, and input schema for proxy_list_targets.
    proxy_list_targets: { name: "proxy_list_targets", description: "List all target domains and their status", inputSchema: { type: "object", properties: { status: { type: "string", enum: ["all", "active", "inactive"], description: "Filter targets by status", default: "all" } } } },

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