Skip to content

Commit 2d0bb2e

Browse files
committed
update oauth.go
1 parent f17b89f commit 2d0bb2e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pkg/auth/oauth.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,22 @@ var successHTML string
2525

2626
const (
2727
// MCP Server OAuth endpoints (which proxy to Clerk)
28+
// Production
2829
AuthURL = "https://auth.onkernel.com/authorize"
2930
TokenURL = "https://auth.onkernel.com/token"
31+
32+
// Staging
33+
// AuthURL = "https://auth.dev.onkernel.com/authorize"
34+
// TokenURL = "https://auth.dev.onkernel.com/token"
35+
36+
// Local
37+
// AuthURL = "http://localhost:3002/authorize"
38+
// TokenURL = "http://localhost:3002/token"
3039

3140
// OAuth client configuration
3241
ClientID = "hmFrJn9hKDV2N02M" // Prod Kernel CLI OAuth Client ID
42+
// ClientID = "gkUVbm11p6EqKd7r" // Staging Kernel CLI OAuth Client ID
43+
// ClientID = "J7i8BKwyFBoyPQN3" // Local Kernel CLI OAuth Client ID
3344
RedirectURI = "http://localhost"
3445

3546
// OAuth scopes - openid for the MCP server flow

0 commit comments

Comments
 (0)