mongodb-memory-bank-mcp-v2
Version:
MongoDB-powered Memory Bank MCP server with hybrid search capabilities for AI assistants
77 lines (76 loc) • 2.21 kB
JSON
{
"name": "mongodb-memory-bank-mcp-v2",
"version": "1.4.5",
"description": "MongoDB-powered Memory Bank MCP server with hybrid search capabilities for AI assistants",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/romiluz13/mongodb-memory-bank-mcp.git"
},
"homepage": "https://github.com/romiluz13/mongodb-memory-bank-mcp#readme",
"bugs": {
"url": "https://github.com/romiluz13/mongodb-memory-bank-mcp/issues"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build && pnpm test",
"mcp:test": "echo '{\"jsonrpc\": \"2.0\", \"method\": \"initialize\", \"params\": {\"protocolVersion\": \"0.1.0\", \"capabilities\": {}, \"clientInfo\": {\"name\": \"test\", \"version\": \"1.0.0\"}}, \"id\": 1}' | node dist/index.js",
"mcp:inspect": "npx @modelcontextprotocol/inspector dist/index.js",
"db:indexes": "tsx scripts/create-indexes.ts",
"db:seed": "tsx scripts/seed-memory.ts"
},
"bin": {
"mongodb-memory-bank-mcp-v2": "./bin/memory-bank-mcp.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"mongodb",
"memory-bank",
"hybrid-search",
"vector-search",
"ai",
"claude",
"llm",
"embeddings"
],
"author": "romiluz13",
"license": "MIT",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.13.1",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"dotenv": "^17.2.0",
"mongodb": "^6.17.0",
"voyageai": "^0.0.4",
"zod": "^4.0.5"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.15",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}