package.json•968 B
{
"name": "mcp-mongodb-server",
"version": "1.0.0",
"description": "MCP server with MongoDB integration",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx server.ts --http",
"dev:stdio": "tsx server.ts",
"dev:build": "npm run build && node dist/server.js --http",
"watch": "tsx watch server.ts --http",
"seed": "tsx seed-database.ts",
"seed:build": "npm run build && node dist/seed-database.js",
"test": "tsx test-client.ts",
"test-simple": "tsx simple-test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"mongodb": "^6.3.0",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"typescript": "^5.3.0",
"tsx": "^4.6.0"
},
"keywords": ["mcp", "mongodb", "model-context-protocol"],
"author": "",
"license": "MIT"
}