Use the Claude Desktop app with your AI Reserve account. You sign in with your work Google account — there is no API key to copy or store.
A profile that fails to install is usually a corrupted download — try re-downloading it first. Otherwise, Claude Desktop can take the same settings directly, and it tests the connection before saving:
https://api.aireserve.com
{"issuer":"https://aireserve.us.auth0.com/","clientId":"KlmloS0fBazToICUBkT1Pn2D0UL18rI5","redirectPort":53180}[{"name":"claude-sonnet-4-6","labelOverride":"Sonnet 4.6"},{"name":"claude-opus-4-8","labelOverride":"Opus 4.8"},{"name":"claude-fable-5","labelOverride":"Fable 5"}]IT admins: the same profile deploys cleanly over MDM (Jamf, Kandji, Intune) for zero-touch setup across a fleet.
Why the warning? Registry settings files are plain text, so they can't carry the publisher signature Windows looks for — every downloaded .reg file shows the same warning, whoever ships it. It doesn't mean your download is damaged. Curious what it changes? Open the file in Notepad — it's a few readable lines, no passwords or keys.
These commands add exactly the same settings as the download — and pasted commands show no publisher warning:
reg add "HKCU\SOFTWARE\Policies\Claude" /v inferenceProvider /t REG_SZ /d "gateway" /f
reg add "HKCU\SOFTWARE\Policies\Claude" /v inferenceGatewayBaseUrl /t REG_SZ /d "https://api.aireserve.com" /f
reg add "HKCU\SOFTWARE\Policies\Claude" /v inferenceCredentialKind /t REG_SZ /d "interactive" /f
reg add "HKCU\SOFTWARE\Policies\Claude" /v inferenceGatewayOidc /t REG_SZ /d "{\"issuer\":\"https://aireserve.us.auth0.com/\",\"clientId\":\"KlmloS0fBazToICUBkT1Pn2D0UL18rI5\",\"redirectPort\":53180}" /f
reg add "HKCU\SOFTWARE\Policies\Claude" /v inferenceModels /t REG_SZ /d "[{\"name\":\"claude-sonnet-4-6\",\"labelOverride\":\"Sonnet 4.6\"},{\"name\":\"claude-opus-4-8\",\"labelOverride\":\"Opus 4.8\"},{\"name\":\"claude-fable-5\",\"labelOverride\":\"Fable 5\"}]" /fTrouble signing in? Ask your administrator to confirm your account is active, or see the developer documentation for advanced setups.