PCM

by rand-tech
Verified

set-proxy-config

Configure and manage proxy settings for all exchanges on the PCM MCP server. Enable or disable proxies, set URLs, and optionally include credentials for secure connections. Clear cache to apply changes immediately.

Instructions

Configure proxy settings for all exchanges

Input Schema

NameRequiredDescriptionDefault
clearCacheNoClear exchange cache to apply changes immediately
enabledYesEnable or disable proxy
passwordNoProxy password (optional)
urlYesProxy URL (e.g., http://proxy-server:port)
usernameNoProxy username (optional)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "clearCache": { "default": true, "description": "Clear exchange cache to apply changes immediately", "type": "boolean" }, "enabled": { "description": "Enable or disable proxy", "type": "boolean" }, "password": { "description": "Proxy password (optional)", "type": "string" }, "url": { "description": "Proxy URL (e.g., http://proxy-server:port)", "type": "string" }, "username": { "description": "Proxy username (optional)", "type": "string" } }, "required": [ "enabled", "url" ], "type": "object" }
ID: ma2f8iji6w