File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,22 @@ var successHTML string
2525
2626const (
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
You can’t perform that action at this time.
0 commit comments