-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig-admin-example.json
More file actions
35 lines (35 loc) · 963 Bytes
/
config-admin-example.json
File metadata and controls
35 lines (35 loc) · 963 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
29
30
31
32
33
34
35
{
"version": "v0.0.1-DEV_EDITION_EXPECT_CHANGES",
"proxy": {
"baseURL": "https://mcp.example.com",
"addr": ":8080",
"name": "MCP Front with Admin",
"auth": {
"kind": "oauth",
"issuer": "https://mcp.example.com",
"idp": {
"provider": "google",
"clientId": {"$env": "GOOGLE_CLIENT_ID"},
"clientSecret": {"$env": "GOOGLE_CLIENT_SECRET"},
"redirectUri": "https://mcp.example.com/oauth/callback"
},
"allowedDomains": ["example.com"],
"allowedOrigins": ["https://claude.ai"],
"tokenTtl": "1h",
"storage": "memory",
"jwtSecret": {"$env": "JWT_SECRET"},
"encryptionKey": {"$env": "ENCRYPTION_KEY"}
},
"admin": {
"enabled": true,
"adminEmails": ["admin@example.com", "admin2@example.com"]
}
},
"mcpServers": {
"example": {
"transportType": "stdio",
"command": "echo",
"args": ["Example MCP Server"]
}
}
}