-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@oglabs/mcp",
"version": "2.14.0",
"description": "Interactive CLI tool and MCP server for managing MCP configurations with tech stack detection and recommendations",
"main": "mcp-manager.cjs",
"type": "module",
"bin": {
"mcp": "./mcp-manager.js"
},
"files": [
"mcp-manager.js",
"mcp-manager.cjs",
"mcp-server.js",
"db.json",
"mcp-tools.json",
"agents-catalog.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"start": "node mcp",
"web": "node mcp-manager.cjs --web",
"server": "node mcp-server.js",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:deploy": "node scripts/deploy.js",
"preview": "vite preview --outDir dist",
"prepublishOnly": "echo 'Use npm run release:* commands for publishing'",
"release": "npm run release:patch",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"release:dry-run": "npm run build:deploy && cd dist && npm pack --dry-run"
},
"keywords": [
"mcp",
"model-context-protocol",
"cli",
"configuration",
"manager",
"server",
"ai",
"llm",
"tech-stack",
"recommendations",
"web-interface",
"automation"
],
"author": "hari",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kmhari/mcp-simple.git"
},
"bugs": {
"url": "https://github.com/kmhari/mcp-simple/issues"
},
"homepage": "https://github.com/kmhari/mcp-simple#readme",
"engines": {
"node": ">=14.0.0"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@oglabs/mcp": "^2.12.0",
"axios": "^1.6.0",
"csv-parser": "^3.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"glob": "^11.0.3",
"node-fetch": "^3.3.2",
"openai": "^5.8.2",
"playwright": "^1.40.0",
"zod": "^3.25.72"
},
"devDependencies": {
"nodemon": "^3.1.10",
"terser": "^5.43.1",
"vite": "^6.3.5"
}
}