package.json•997 B
{
"name": "mcsm-mcp-server",
"version": "1.0.0",
"description": "MCSManager MCP Server",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index-stdio.ts",
"dev:sse": "tsx watch src/index-sse.ts",
"dev:http": "tsx watch src/index-http.ts",
"dev:stdio": "tsx watch src/index-stdio.ts",
"start": "node dist/index-http.js",
"start:stdio": "node dist/index-stdio.js",
"test": "node test/run-all-tests.sh",
"test:http": "node test/http-test.js",
"test:stdio": "node test/stdio-test.js",
"list-instances": "node test/list-all-instances.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"eventsource": "^4.0.0",
"express": "^4.18.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
}
}