-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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": "mcp-orchestrator-framework",
"version": "2.0.3",
"description": "Generic MCP Framework Server - Configurable analysis frameworks with JSON configuration support",
"main": "framework-server.js",
"type": "module",
"scripts": {
"start": "node framework-server.js",
"start:ui": "node framework-server.js config-examples/ui-analysis-config-custom.json",
"start:generic": "node framework-server.js config-examples/generic-analysis-config.json",
"start:eds": "node framework-server.js config-examples/eds-block-analysis-config.json",
"test": "node test-framework.js",
"npx:ui": "npx mcp-orchestrator-framework config-examples/ui-analysis-config-custom.json",
"npx:generic": "npx mcp-orchestrator-framework config-examples/generic-analysis-config.json",
"npx:eds": "npx mcp-orchestrator-framework config-examples/eds-block-analysis-config.json"
},
"bin": {
"mcp-orchestrator-framework": "framework-server.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"framework",
"analysis",
"configurable",
"json-config",
"error-handling",
"self-evaluation",
"security",
"artifacts"
],
"author": "ACS UI",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ACS-UI/mcp-orchestrator-framework.git"
},
"files": [
"framework-server.js",
"config-examples/",
"templates/",
"README.md"
]
}