TLS Interception by Antivirus Breaks Claude Desktop’s Connection; Workaround with AV Exclusions

If Cowork (the Claude desktop companion app) keeps showing "Claude in Chrome is not connected" while the Claude side‑panel works fine, the likely culprit is your antivirus performing TLS inspection on bridge.claudeusercontent.com. Cowork’s Node.js runtime does not trust the Windows system CA store, so it rejects the interception certificate.
Confirm the Issue
Run this in PowerShell to check the certificate issuer:
$req = [System.Net.WebRequest]::Create("https://bridge.claudeusercontent.com")
try { $req.GetResponse() } catch { }
$req.ServicePoint.Certificate | Format-List Subject, Issuer
If the Issuer is your AV brand (Norton, Bitdefender, ESET, Kaspersky, Avast…) instead of a public CA (e.g., Amazon, Let’s Encrypt), that confirms the issue.
Fix
- Add
*.claudeusercontent.comand*.anthropic.comto your antivirus’s HTTPS‑scan exclusion list. - Restart the Cowork application.
Root Cause & Request
This breaks silently for every Windows user with HTTPS scanning enabled. The author suggests Anthropic launch Node with --use-system-ca to respect the system certificate store, which would avoid this entirely.
If you’re using Cowork with Claude and see this error, check your AV exclusions first — it saves hours of debugging.
📖 Read the full source: r/ClaudeAI
👀 See Also

llama.cpp Massive Prompt Reprocessing with Coding Agents: Debugging KV Cache and Context Swapping
A user reports llama.cpp reprocessing 40k+ tokens on similar prompts when using opencode + pi.dev, despite high LCP similarity. Config details and suspected causes are shared.

Five Common OpenClaw Setup Mistakes That Waste Money and Create Security Risks
Based on reviewing 50+ OpenClaw setups, the same five issues appear repeatedly: using Opus as the default model instead of Sonnet for most tasks, never starting fresh sessions, installing skills without reading source code, exposing the gateway to the network, and adding a second agent before fixing the first.

7 MCP Gateway Bugs: Session Leaks, Dead SSE, and OAuth in Gateway Mode
A Reddit post details seven real-world MCP gateway bugs — session state leaking across clients, silent SSE disconnections, OAuth failures in gateway mode, and more — with fixes based on boring infra, not better prompts.

Maximize Savings: Running OpenClaw Bots on a Budget
Explore ways to run OpenClaw/ClawdBot/MoltBot for free or on a budget, leveraging community tips and resourceful strategies shared on r/openclaw.