-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "@graphmemory/process-mcp",
"version": "0.2.0",
"description": "MCP server that supervises long-running dev processes — start, stop, restart, list, tail logs (JSON-aware), wait for readiness, run one-shot commands. HTTP transport, lives in its own process so state survives Claude Code restarts.",
"type": "module",
"bin": {
"process-mcp": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"process",
"supervisor",
"dev",
"ai",
"claude",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graph-memory/process-mcp.git"
},
"author": "graph-memory",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.3",
"execa": "^9.6.0",
"zod": "^4.3.6"
},
"license": "Elastic-2.0",
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}