Hi @kenzoo @Madhan_Santharaman I think I have a good solution for you.
Can you press Ctrl + Shift + P to Bring up the Command Palette and then type Open VS Code Settings.
Then search for Certificate and make sure the following two options are selected:
- Http: System Certificates
- Http: Experimental System Certificates V2.
That is the graphical way of modifying the settings, but if you prefer, you can also do it this way:
Using settings.json
- Press
Ctrl+Shift+P. - Run Preferences: Open User Settings (JSON).
- Add:
{
"http.systemCertificates": true,
"http.experimental.systemCertificatesV2": true
}
If other settings already exist, add these inside the existing {} with commas between entries.
- Save, fully quit Cursor, and reopen it.
- Rerun Network Diagnostics.
Both will have the same results.

