package.json•849 B
{
"name": "mcp-database",
"version": "1.0.0",
"description": "MCP Server for database operations",
"main": "index.js",
"bin": {
"database": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"mongodb",
"database"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.0",
"dotenv": "^16.4.5",
"mongodb": "^6.15.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}