-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 967 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 967 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
32
33
34
{
"name": "skill-mcp",
"version": "1.0.0",
"description": "MCP server exposing Claude Code memory, skills, and task management for Mendix Studio Pro Maia agent.",
"type": "module",
"bin": {
"skill-mcp": "build/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"test": "npm run build && node --test --test-isolation=none tests/http-server.test.mjs",
"smoke": "npm run build && node scripts/smoke-http.mjs",
"start": "node build/index.js",
"inspect": "npx @modelcontextprotocol/inspector http://127.0.0.1:9000/mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"express": "^4.19.2",
"cors": "^2.8.5",
"zod": "^3.24.3",
"yaml": "^2.4.0"
},
"devDependencies": {
"@types/node": "^20.17.31",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"shx": "^0.4.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}