-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mcp-router",
"version": "1.0.0",
"description": "CAP router that proxies MCP (Streamable HTTP) traffic to an on-prem ABAP MCP server via BTP Destination + Cloud Connector, with SAP IAS (Entra-federated) SSO and principal propagation.",
"private": true,
"engines": {
"node": ">=20"
},
"dependencies": {
"@sap/cds": "^9",
"@sap/xssec": "^4",
"@sap-cloud-sdk/connectivity": "^4",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^2"
},
"scripts": {
"start": "cds-serve",
"build": "node scripts/gen-build-info.js",
"postinstall": "node scripts/gen-build-info.js",
"test": "node --test test/*.test.js",
"watch": "cds watch"
},
"cds": {
"requires": {
"auth": {
"[production]": {
"kind": "ias"
},
"[development]": {
"kind": "mocked",
"users": {
"alice": {
"roles": ["mcp.User"],
"email": "alice@example.com"
}
}
}
},
"destinations": true,
"connectivity": true
},
"log": {
"service": true,
"levels": {
"mcp": "info"
}
},
"mcp": {
"destination": "pm4-bp-ssl",
"backendPath": "/sap/zmcp2/ZMCPX",
"locationId": "PM4-Sydney",
"timeout": 120000,
"exposeHealth": true,
"exposeConfig": true,
"routes": [
{
"path": "/mcp",
"peek": true
}
]
}
}
}