UNPKG

mcp-session-memory

Version:

Enterprise-grade MCP Session Memory System - AI-powered conversation persistence with semantic search for Claude Desktop

147 lines 3.93 kB
{ "name": "mcp-session-memory", "version": "1.0.0", "description": "Enterprise-grade MCP Session Memory System - AI-powered conversation persistence with semantic search for Claude Desktop", "keywords": [ "mcp", "model-context-protocol", "ai", "conversation-memory", "claude-desktop", "session-management", "semantic-search", "typescript", "ai-tools", "anthropic", "openai", "conversation-analysis", "enterprise", "mongodb" ], "author": "Kaayaan Ai <development@kaayaan.ai>", "license": "MIT", "homepage": "https://github.com/KaayaanAi/Claude-Memory-MCP-session-memory#readme", "repository": { "type": "git", "url": "git+https://github.com/KaayaanAi/Claude-Memory-MCP-session-memory.git" }, "bugs": { "url": "https://github.com/KaayaanAi/Claude-Memory-MCP-session-memory/issues" }, "funding": { "type": "individual", "url": "https://kaayaan.ai/support" }, "main": "./build/server.js", "module": "./build/server.js", "types": "./build/types/index.d.ts", "bin": { "mcp-session-memory": "./build/server.js" }, "files": [ "build/", "src/", "README.md", "LICENSE", "CHANGELOG.md", ".env.example", "docker-compose.yml", "Dockerfile" ], "scripts": { "build": "tsc && tsc-alias", "build:watch": "tsc --watch", "start": "node build/server.js", "start:http": "HTTP_MODE=true node build/server.js", "dev": "npm run build && npm start", "dev:watch": "concurrently \"npm run build:watch\" \"nodemon build/server.js\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest --testPathPattern=unit", "test:integration": "jest --testPathPattern=integration", "test:security": "jest --testPathPattern=security", "test:performance": "jest --testPathPattern=performance", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rimraf build dist lib", "inspector": "npm run build && node build/server.js --inspect", "docker:build": "docker build -t mcp-session-memory .", "docker:run": "docker compose up -d", "docker:stop": "docker compose down", "prepublishOnly": "npm run clean && npm run build", "prepack": "npm run build", "postpack": "npm run clean", "prepare": "npm run build" }, "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" }, "os": [ "linux", "darwin", "win32" ], "cpu": [ "x64", "arm64" ], "preferGlobal": false, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "express": "^4.18.2", "cors": "^2.8.5", "helmet": "^7.1.0", "express-rate-limit": "^7.1.5", "mongodb": "^6.3.0", "winston": "^3.11.0", "winston-daily-rotate-file": "^4.7.1", "bcrypt": "^5.1.1", "jsonwebtoken": "^9.0.2", "joi": "^17.11.0", "dotenv": "^16.3.1" }, "devDependencies": { "@types/node": "^20.10.5", "@types/express": "^4.17.21", "@types/cors": "^2.8.17", "@types/bcrypt": "^5.0.2", "@types/jsonwebtoken": "^9.0.5", "@types/jest": "^29.5.8", "typescript": "^5.3.3", "tsc-alias": "^1.8.8", "jest": "^29.7.0", "ts-jest": "^29.1.1", "eslint": "^8.56.0", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "nodemon": "^3.0.2", "concurrently": "^8.2.2", "rimraf": "^5.0.5", "supertest": "^6.3.3", "@types/supertest": "^2.0.16" }, "optionalDependencies": { "redis": "^4.6.12" }, "peerDependencies": { "mongodb": ">=5.0.0" }, "bundledDependencies": [], "config": { "mongodbMemoryServer": { "version": "7.0.4" } }, "workspaces": { "packages": [ "examples/*", "docs/*" ] } }