-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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": "datacenter-mcp-server",
"version": "1.0.0",
"description": "Mission-critical data center design & engineering MCP server. Provides cooling load calculations, power redundancy analysis, tier classification assessment, and commissioning workflow tools for AI agents.",
"main": "dist/index.js",
"bin": {
"datacenter-mcp-server": "dist/index.js"
},
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/log-wade/datacenter-mcp-server"
},
"homepage": "https://github.com/log-wade/datacenter-mcp-server#readme",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"start": "node dist/index.js",
"start:http": "TRANSPORT=http node dist/index.js",
"dev": "tsc --watch",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --verbose"
},
"keywords": [
"mcp",
"data-center",
"mission-critical",
"hvac",
"cooling",
"power",
"tier-classification",
"commissioning",
"ai-agent",
"gpu-cooling",
"ups-sizing",
"battery",
"rack-density",
"liquid-cooling"
],
"author": "NextGen Mission Critical",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"express": "^4.21.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^29.5.11",
"@types/node": "^22.19.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.9.3"
}
}