package.json•1.33 kB
{
"name": "@rag-context/mcp-server",
"version": "1.0.0",
"description": "A lightweight MCP server for RAG-based memory context management with local vector store",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"rag-context-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"rag",
"vector-store",
"memory",
"context",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.6.0",
"vectra": "^0.11.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}