-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.32 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.32 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
{
"name": "sflights-mcp",
"version": "1.0.0",
"description": "SAP Flight Model — BTP CAP CDS Project",
"repository": "https://github.com/MindsetConsulting/sflight-mcp",
"license": "MIT",
"dependencies": {
"@sap/cds": "^9",
"@cap-js/hana": "^2",
"@sap/xssec": "^4",
"@gavdi/cap-mcp": "^1",
"express": "^4",
"hana-cli": "^3",
"@modelcontextprotocol/sdk": "^1"
},
"devDependencies": {
"@cap-js/sqlite": "^2",
"@sap/cds-dk": "^9",
"cds-swagger-ui-express": "^0",
"@sap/cds-lsp": "^9",
"@sap/eslint-plugin-cds": "^4",
"@cap-js/cds-typer": "^0"
},
"scripts": {
"start": "cds-serve",
"watch": "cds watch",
"build": "cds build && cds build --production",
"test": "cds test",
"postinstall": "node scripts/patch-mcp-resources.js || true"
},
"cds": {
"mcp": {
"name": "sflights-mcp",
"auth": "none",
"wrap_entities_to_actions": true,
"wrap_entity_modes": ["query", "get"]
},
"requires": {
"db": {
"kind": "sql"
},
"[production]": {
"db": {
"kind": "hana-cloud"
},
"auth": {
"kind": "dummy"
}
},
"[hybrid]": {
"db": {
"kind": "hana-cloud"
},
"auth": {
"kind": "dummy"
}
}
}
}
}