-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.72 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hana-mcp-server",
"version": "0.3.1",
"description": "SAP HANA MCP server — Model Context Protocol server for SAP HANA and HANA Cloud. Use with Claude Code, VS Code, and other AI agents.",
"main": "hana-mcp-server.js",
"bin": {
"hana-mcp-server": "hana-mcp-server.js"
},
"scripts": {
"start": "node hana-mcp-server.js",
"start:http": "node src/server/http-index.js",
"dev": "nodemon hana-mcp-server.js",
"test": "node tests/automated/test-config-limits.js && node tests/automated/test-config-all-env.js && node tests/automated/test-resources-uri.js && node tests/automated/test-formatters-query.js && node tests/automated/test-sensitive-redact.js && node tests/automated/test-metadata-catalog.js && node tests/automated/test-snapshot-store.js && node tests/automated/test-semantics-loader.js && node tests/automated/test-semantics-url-env.js && node tests/automated/test-query-runner-mocked.js && node tests/automated/test-schema-table-tools-mocked.js && node tests/automated/test-query-tools-mocked.js && node tests/automated/test-query-runner-unit.js && node tests/automated/test-http-origin-env.js && node tests/automated/test-http-auth-env.js && node tests/automated/test-mcp-inspector.js && node tests/automated/test-new-features.js && node tests/automated/test-dml-restrictions.js && node tests/automated/test-connection-pool.js",
"test:live": "node tests/automated/test-all-tools.js",
"test:new": "node tests/automated/test-new-features.js",
"test:all-tools": "node tests/automated/test-all-tools.js",
"test:query-once": "node tests/automated/run-query-once.js"
},
"keywords": [
"sap",
"hana",
"sap-hana",
"hana-mcp",
"hana-mcp-server",
"claude-code",
"sap-mcp",
"hatrigt",
"hana-cloud",
"mcp",
"model-context-protocol",
"mcp-server",
"btp",
"database",
"ai",
"claude",
"vs-code",
"enterprise",
"sql",
"enterprise-ready-mcp-server",
"enterprise",
"enterprise-hana-mcp"
],
"author": {
"name": "HANA MCP Server Contributors",
"email": "support@hana-mcp-server.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hatrigt/hana-mcp-server.git"
},
"homepage": "https://github.com/hatrigt/hana-mcp-server#readme",
"bugs": {
"url": "https://github.com/hatrigt/hana-mcp-server/issues"
},
"readme": "README.md",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {
"@sap/hana-client": "^2.17.22",
"axios": "^1.12.2",
"jose": "^5.9.6"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"files": [
"hana-mcp-server.js",
"src/",
"README.md",
"LICENSE"
]
}