File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Cognito Authentication Configuration
2
+ # Copy this file to .env and fill in your actual values
3
+
4
+ # Cognito App Client ID
5
+ COGNITO_CLIENT_ID=your_cognito_client_id_here
6
+
7
+ # Cognito App Client Secret
8
+ COGNITO_CLIENT_SECRET=your_cognito_client_secret_here
9
+
10
+ # Cognito User Pool ID
11
+ COGNITO_USER_POOL_ID=your_cognito_user_pool_id_here
12
+
13
+ # AWS Region for Cognito
14
+ AWS_REGION=us-east-1
15
+
16
+ # Cognito Domain (without https:// prefix, just the domain name)
17
+ # Example: mcp-gateway or your-custom-domain
18
+ # COGNITO_DOMAIN=
19
+
20
+ # Secret key for session cookie signing (must match registry SECRET_KEY), string of hex characters
21
+ # To generate: python -c 'import secrets; print(secrets.token_hex(32))'
22
+ SECRET_KEY=your-secret-key-here
23
+
24
+ # Either http://localhost:8000 or the HTTPS URL of your deployed MCP Gateway
25
+ REGISTRY_URL=your_registry_url_here
You can’t perform that action at this time.
0 commit comments