docs/errors/MCPX_NETWORK_PROXY_MISCONFIG.md
MCPX_NETWORK_PROXY_MISCONFIGSeverity: warn Domain: Network
mcpproxy detected HTTP_PROXY, HTTPS_PROXY, or ALL_PROXY in its environment
but they don't appear to be reachable, are missing a scheme, or look syntactically
broken. Outbound connections will likely fail.
proxy.example.com:8080 instead of http://proxy.example.com:8080.NO_PROXY doesn't include the upstream MCP server's hostname..pac file URL was set instead of a direct proxy.env | grep -iE 'proxy|no_proxy'
export HTTPS_PROXY=http://proxy.example.com:8080
export HTTP_PROXY=http://proxy.example.com:8080
export NO_PROXY="localhost,127.0.0.1,.example.com"
The proxy URL must include the scheme.
Tray apps don't inherit shell ~/.zshrc exports. On macOS, set them in
~/Library/LaunchAgents/com.mcpproxy.tray.plist (the bundle includes a
template) or use launchctl setenv.
If you no longer need the proxy:
unset HTTP_PROXY HTTPS_PROXY ALL_PROXY NO_PROXY