-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathwrangler-PROD.jsonc
More file actions
52 lines (52 loc) · 1.06 KB
/
wrangler-PROD.jsonc
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "hosted-mcp-prod",
"main": "src/cf-worker.ts",
"compatibility_date": "2025-03-10",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": "public"
},
"version_metadata": {
"binding": "CF_VERSION_METADATA"
},
"logpush": true,
"routes": [
{
"pattern": "mcp.vantage.sh",
"custom_domain": true
},
{
"pattern": "hosted-mcp-prod.vantage.sh",
"custom_domain": true
}
],
"observability": {
"enabled": true
},
"vars": {
"SELF_CALLBACK_URL": "https://mcp.vantage.sh/callback",
"AUTH0_SCOPE": "openid offline_access email",
"VANTAGE_MCP_TOKEN": "",
"VANTAGE_API_HOST": "https://api.vantage.sh"
},
"kv_namespaces": [
{
"binding": "OAUTH_KV",
"id": "aa9945510d56453da98ea1af611e84f3"
}
],
"durable_objects": {
"bindings": [
{
"class_name": "VantageMCP",
"name": "MCP_OBJECT"
}
]
},
"migrations": []
}