package.json•1.64 kB
{
"name": "@mhalder/qdrant-mcp-server",
"version": "1.4.0",
"description": "MCP server for semantic search using local Qdrant and Ollama (default) with support for OpenAI, Cohere, and Voyage AI",
"type": "module",
"bin": {
"qdrant-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:providers": "node scripts/verify-providers.js",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"mcp",
"qdrant",
"vector-search",
"semantic-search",
"embeddings"
],
"author": "mhalder",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mhalder/qdrant-mcp-server.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@qdrant/js-client-rest": "^1.12.0",
"bottleneck": "^2.19.5",
"cohere-ai": "^7.19.0",
"express": "^5.1.0",
"openai": "^4.77.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@types/express": "^5.0.3",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"husky": "^9.1.7",
"semantic-release": "^24.2.9",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}