-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsample_env_file
More file actions
28 lines (20 loc) · 991 Bytes
/
sample_env_file
File metadata and controls
28 lines (20 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
GOOGLE_API_KEY=your-google-api-key
# ------------------------------------------------------------------
# MCP Resource Server with Google OAuth
# ------------------------------------------------------------------
# Base URL of your MCP Resource Server (must be reachable by clients)
RS_BASE_URL=http://localhost:8005
# Where to bind the local server
RS_HOST=0.0.0.0
RS_PORT=8005
# Path where MCP endpoint is mounted
MCP_PATH=/mcp
# Google OAuth client credentials (from Google Cloud Console)
GOOGLE_CLIENT_ID=295xxx-yyy.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-MqKAzzz
# Redirect path you registered in Google Cloud OAuth credentials
GOOGLE_REDIRECT_PATH=/auth/callback
# Required OAuth scopes (space-separated list)
REQUIRED_SCOPES=openid https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile
# Allowed client redirect URIs for DCR (semicolon-separated list)
ALLOWED_CLIENT_REDIRECT_URIS=http://localhost:*;http://127.0.0.1:*