WORKSPACE_EXTERNAL_URL - add an document usage

This commit is contained in:
Taylor Wilsdon
2025-08-22 09:51:49 -04:00
parent 4c424d95d5
commit f1b06446bc
10 changed files with 80 additions and 40 deletions

View File

@@ -49,7 +49,7 @@
4. Important Notes:
- Make sure you have configured your Google OAuth credentials in the secret
- The application requires internet access to reach Google APIs
- OAuth callback URL: {{ default "http://localhost" .Values.env.WORKSPACE_MCP_BASE_URI }}:{{ .Values.env.WORKSPACE_MCP_PORT }}/oauth2callback
- OAuth callback URL: {{ if .Values.env.WORKSPACE_EXTERNAL_URL }}{{ .Values.env.WORKSPACE_EXTERNAL_URL }}{{ else }}{{ default "http://localhost" .Values.env.WORKSPACE_MCP_BASE_URI }}:{{ .Values.env.WORKSPACE_MCP_PORT }}{{ end }}/oauth2callback
For more information about the Google Workspace MCP Server, visit:
https://github.com/taylorwilsdon/google_workspace_mcp

View File

@@ -80,6 +80,10 @@ env:
# For external access: "https://your-domain.com" or "http://your-ingress-host"
WORKSPACE_MCP_BASE_URI: ""
# External URL for reverse proxy setups (e.g., "https://your-domain.com")
# If set, this overrides the base_uri:port combination for OAuth endpoints
WORKSPACE_EXTERNAL_URL: ""
# OAuth 2.1 support
MCP_ENABLE_OAUTH21: "false"