@mhalder/qdrant-mcp-server 1.5.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/vitest.config.ts CHANGED
@@ -4,6 +4,7 @@ export default defineConfig({
4
4
  test: {
5
5
  globals: true,
6
6
  environment: "node",
7
+ exclude: ["**/node_modules/**", "**/build/**", "**/dist/**"],
7
8
  coverage: {
8
9
  provider: "v8",
9
10
  reporter: ["text", "json", "html"],
@@ -1,22 +0,0 @@
1
- # No version field needed for Docker Compose v1.27.0+
2
- services:
3
- qdrant:
4
- image: qdrant/qdrant:latest
5
- container_name: qdrant-mcp
6
- ports:
7
- - "6333:6333"
8
- - "6334:6334"
9
- volumes:
10
- - ./qdrant_storage:/qdrant/storage
11
- environment:
12
- - QDRANT__SERVICE__GRPC_PORT=6334
13
- restart: unless-stopped
14
-
15
- ollama:
16
- image: ollama/ollama:latest
17
- container_name: ollama
18
- ports:
19
- - "11434:11434"
20
- volumes:
21
- - ./ollama_storage:/root/.ollama
22
- restart: unless-stopped