forked from dvvolkovv/MCP_Human_design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 698 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 698 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
{
"name": "human-design-mcp-server",
"version": "1.0.0",
"description": "MCP Server for Human Design calculations compatible with n8n",
"main": "http-server.js",
"type": "module",
"scripts": {
"start": "node http-server.js",
"start:mcp": "node index-with-swiss.js",
"dev": "node --watch http-server.js",
"dev:mcp": "node --watch index-with-swiss.js"
},
"keywords": [
"human-design",
"mcp",
"mcp-server",
"n8n",
"astrology",
"bodygraph"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^4.18.2",
"swisseph": "^0.5.15"
},
"engines": {
"node": ">=18.0.0"
}
}