package.json•855 B
{
"name": "mcp-portal-new",
"version": "1.0.0",
"description": "MCP Server implementation",
"type": "module",
"scripts": {
"build": "tsc && chmod +x dist/*.js",
"start": "node dist/index.js",
"dev": "tsc -w & nodemon dist/index.js",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol"
],
"bin": {
"mcp-server": "./dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"@types/express": "^5.0.1",
"axios": "^1.6.7",
"express": "^5.1.0",
"marked": "^12.0.1",
"node-cache": "^5.1.2",
"typescript": "^5.8.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.11.30",
"nodemon": "^3.1.9",
"shx": "^0.3.4"
}
}