-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 965 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 965 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
{
"name": "ord-mcp-server",
"version": "0.0.1",
"description": "A clean MCP server providing ORD specification access and concept explanations",
"type": "module",
"main": "src/ord-mcp-server.js",
"bin": {
"ord-mcp-server": "src/ord-mcp-server.js"
},
"scripts": {
"start": "node src/ord-mcp-server.js",
"dev": "node --inspect src/ord-mcp-server.js",
"test": "node tests/test-runner.js",
"test:unit": "node --test tests/unit/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"test:watch": "node --test --watch tests/**/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0"
},
"keywords": [
"mcp",
"ord",
"cap",
"documentation",
"sap"
],
"author": "ORD MCP Server",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}