proxy_get_tls_config
Retrieve TLS capture and spoofing settings for network traffic interception and modification across browsers, CLI tools, Docker containers, and Android devices.
Instructions
Get current TLS capture and spoofing configuration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/tls.ts:282-297 (handler)The handler function for the `proxy_get_tls_config` MCP tool, which returns the current TLS configuration retrieved from `proxyManager`.
server.tool( "proxy_get_tls_config", "Get current TLS capture and spoofing configuration.", {}, async () => { return { content: [{ type: "text" as const, text: JSON.stringify({ status: "success", ...proxyManager.getTlsConfig(), }), }], }; }, );