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

CLAUDE.md Entries That Disable Opus 4.7’s Human-Pacing Behavior
Three CLAUDE.md directives that suppress Claude 4.7 Opus's break suggestions, time overestimates, and phase-splitting during long coding sessions.

OpenClaw Dashboard Disconnecting After 2026.5.27 Update? Fix: Remove Stuck Update Launchd Job
After the 2026.5.27 update, a stuck update launchd job causes dashboard WebSocket disconnects and Telegram failures. Removing the job restores stability.

KV Cache Quantization Issues in Local Coding Agents at High Context Lengths
A Reddit analysis identifies aggressive KV cache quantization as the cause of infinite correction loops and malformed JSON outputs in local coding agents like Qwen3-Coder and GLM 4.7 at 30k+ context lengths, recommending mixed precision or reduced context as workarounds.

OpenClaw Crash Loop Debugging: A 5-Point Checklist
A Reddit post from r/openclaw provides a five-step checklist for quickly diagnosing crash loops in OpenClaw agents or gateways, focusing on failure shape, host pressure, provider latency, config diffs, and alert setup.