Skip to main content
Glama
mako10k

Web Proxy MCP Server

by mako10k

ssl_ca_status

Check and retrieve the current status and configuration of Certificate Authorities (CA) for secure browser setup and traffic monitoring in the Web Proxy MCP Server.

Instructions

Get current CA status and configuration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler logic for the 'ssl_ca_status' tool. It calls sslManager.getCAStatus() and formats the result as text content for MCP response.
    case 'ssl_ca_status': const status = this.sslManager.getCAStatus(); return { content: [{ type: "text", text: `🔒 SSL Manager Status\n\n${JSON.stringify(status, null, 2)}` }] };
  • Tool schema definition including name, description, and empty input schema. Used for validation and MCP tool registration.
    ssl_ca_status: { name: "ssl_ca_status", description: "Get current CA status and configuration", inputSchema: { type: "object", properties: {} } },
  • Core utility method in SSLManager that provides the CA status information used by the tool handler.
    getCAStatus() { return { initialized: this.initialized, currentCA: this.currentCA, caDir: this.caDir, caInfo: this.caInfo || null }; }

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