package.json•2.15 kB
{
"name": "shared-knowledge-mcp",
"version": "1.0.0",
"description": "Shared Knowledge MCP Server for AI Assistants",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"typecheck": "tsc",
"build": "node esbuild.config.js",
"build:typecheck": "npm run typecheck && npm run build",
"build:watch": "node esbuild.config.js --watch",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"clean": "rimraf dist/*",
"test": "jest --no-cache --passWithNoTests",
"test:watch": "jest --watch",
"test:integration": "jest --config jest.integration.config.js --no-cache --passWithNoTests",
"test:all": "npm test && npm run test:integration",
"create-vector-store": "node scripts/create-vector-store.js",
"create-vector-store:build": "npm run build && npm run create-vector-store",
"test-rag": "node scripts/test-rag.js",
"test-mcp": "node scripts/test-mcp-client.js",
"start-weaviate": "sh scripts/start-weaviate.sh",
"rebuild-vector-store-weaviate": "sh scripts/rebuild-vector-store-weaviate.sh",
"rebuild-vector-store-hnsw": "sh scripts/rebuild-vector-store-hnsw.sh",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --apply ."
},
"keywords": [
"mcp",
"rag",
"ai",
"assistant"
],
"author": "",
"license": "MIT",
"dependencies": {
"@huggingface/inference": "^2.8.1",
"@langchain/community": "^0.3.36",
"@langchain/core": "^0.3.42",
"@langchain/ollama": "^0.2.0",
"@langchain/textsplitters": "^0.1.0",
"@langchain/weaviate": "^0.1.1",
"@modelcontextprotocol/sdk": "^1.7.0",
"@zilliz/milvus2-sdk-node": "^2.5.6",
"hnswlib-node": "^3.0.0",
"langchain": "^0.3.19",
"weaviate-ts-client": "^2.2.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"esbuild": "^0.25.1",
"esbuild-node-externals": "^1.18.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}