-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "architect-mcp-server",
"version": "1.0.0",
"description": "Powerful, self-extending MCP server for dynamic AI tool orchestration with sandboxed execution, capability-based security, and a built-in dashboard.",
"main": "dist/index.js",
"bin": {
"architect-mcp": "bin/architect-mcp.js"
},
"files": [
"dist",
"bin",
"dashboard",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"prepublishOnly": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agents",
"tools",
"sandbox"
],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^12.6.2",
"cron-parser": "^5.5.0",
"hono": "^4.12.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}