package.json•1.26 kB
{
"name": "@r-mcp/mongo-mcp",
"version": "1.0.16",
"description": "A starter template for building MCP (Model Context Protocol) servers",
"main": "dist/index.js",
"type": "module",
"bin": {
"mongo-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"install-server": "tsc && chmod 755 dist/index.js && node scripts/update-config.js",
"install-cursor": "tsc && chmod 755 dist/index.js && node scripts/update-config.js cursor",
"install-desktop": "tsc && chmod 755 dist/index.js && node scripts/update-config.js desktop",
"install-code": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code",
"install-mcp": "tsc && chmod 755 dist/index.js && node scripts/update-config.js mcp",
"install-code-library": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code-library",
"release": "chmod 755 scripts/build-and-publish.js && node scripts/build-and-publish.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.2.0",
"axios": "^1.6.2",
"mongodb": "^6.19.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2"
},
"files": [
"dist"
]
}