@mhalder/qdrant-mcp-server 3.0.0 → 3.1.1
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/.github/workflows/ci.yml +4 -1
- package/CHANGELOG.md +10 -0
- package/README.md +20 -14
- package/package.json +2 -2
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
strategy:
|
|
15
15
|
matrix:
|
|
16
|
-
node-version: [22.x]
|
|
16
|
+
node-version: [22.x, 24.x]
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout code
|
|
@@ -27,6 +27,9 @@ jobs:
|
|
|
27
27
|
|
|
28
28
|
- name: Install dependencies
|
|
29
29
|
run: npm ci
|
|
30
|
+
env:
|
|
31
|
+
# Node 24 requires C++20 for native modules
|
|
32
|
+
CXXFLAGS: ${{ matrix.node-version == '24.x' && '-std=c++20' || '' }}
|
|
30
33
|
|
|
31
34
|
- name: Type check
|
|
32
35
|
run: npm run type-check
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## <small>3.1.1 (2026-01-22)</small>
|
|
2
|
+
|
|
3
|
+
* docs: add Node 24 installation instructions ([edb27cc](https://github.com/mhalder/qdrant-mcp-server/commit/edb27cc)), closes [#49](https://github.com/mhalder/qdrant-mcp-server/issues/49)
|
|
4
|
+
|
|
5
|
+
## 3.1.0 (2026-01-22)
|
|
6
|
+
|
|
7
|
+
* Merge pull request #48 from mhalder/feat/node-24-support ([d6b57ae](https://github.com/mhalder/qdrant-mcp-server/commit/d6b57ae)), closes [#48](https://github.com/mhalder/qdrant-mcp-server/issues/48)
|
|
8
|
+
* fix(ci): enable C++20 for Node 24 native module builds ([8fca70e](https://github.com/mhalder/qdrant-mcp-server/commit/8fca70e))
|
|
9
|
+
* feat: add Node.js 24 support ([bf39405](https://github.com/mhalder/qdrant-mcp-server/commit/bf39405)), closes [#47](https://github.com/mhalder/qdrant-mcp-server/issues/47)
|
|
10
|
+
|
|
1
11
|
## 3.0.0 (2026-01-22)
|
|
2
12
|
|
|
3
13
|
* feat!(indexer): use git remote URL for consistent collection naming ([f51f82d](https://github.com/mhalder/qdrant-mcp-server/commit/f51f82d))
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ A Model Context Protocol (MCP) server providing semantic search capabilities usi
|
|
|
25
25
|
|
|
26
26
|
### Prerequisites
|
|
27
27
|
|
|
28
|
-
- Node.js 22
|
|
28
|
+
- Node.js 22.x or 24.x
|
|
29
29
|
- Podman or Docker with Compose support
|
|
30
30
|
|
|
31
31
|
### Installation
|
|
@@ -34,8 +34,13 @@ A Model Context Protocol (MCP) server providing semantic search capabilities usi
|
|
|
34
34
|
# Clone and install
|
|
35
35
|
git clone https://github.com/mhalder/qdrant-mcp-server.git
|
|
36
36
|
cd qdrant-mcp-server
|
|
37
|
+
|
|
38
|
+
# Node 22.x
|
|
37
39
|
npm install
|
|
38
40
|
|
|
41
|
+
# Node 24.x (requires C++20 flag for native module compilation)
|
|
42
|
+
CXXFLAGS='-std=c++20' npm install
|
|
43
|
+
|
|
39
44
|
# Start services (choose one)
|
|
40
45
|
podman compose up -d # Using Podman
|
|
41
46
|
docker compose up -d # Using Docker
|
|
@@ -533,18 +538,18 @@ See [examples/](examples/) directory for detailed guides:
|
|
|
533
538
|
|
|
534
539
|
#### Git History Configuration
|
|
535
540
|
|
|
536
|
-
| Variable | Description
|
|
537
|
-
| -------------------------- |
|
|
538
|
-
| `GIT_MAX_COMMITS` | Maximum commits to index per run
|
|
539
|
-
| `GIT_INCLUDE_FILES` | Include changed file list in chunks
|
|
540
|
-
| `GIT_INCLUDE_DIFF` | Include truncated diff in chunks
|
|
541
|
-
| `GIT_MAX_DIFF_SIZE` | Maximum diff size in bytes per commit
|
|
542
|
-
| `GIT_TIMEOUT` | Timeout for git commands (ms)
|
|
543
|
-
| `GIT_MAX_CHUNK_SIZE` | Maximum characters per chunk
|
|
544
|
-
| `GIT_BATCH_SIZE` | Number of chunks to embed in one batch
|
|
545
|
-
| `GIT_BATCH_RETRY_ATTEMPTS` | Retry attempts for failed batches
|
|
546
|
-
| `GIT_SEARCH_LIMIT` | Default search result limit
|
|
547
|
-
| `GIT_ENABLE_HYBRID` | Enable hybrid search with sparse vectors
|
|
541
|
+
| Variable | Description | Default |
|
|
542
|
+
| -------------------------- | ---------------------------------------- | ------- |
|
|
543
|
+
| `GIT_MAX_COMMITS` | Maximum commits to index per run | 5000 |
|
|
544
|
+
| `GIT_INCLUDE_FILES` | Include changed file list in chunks | true |
|
|
545
|
+
| `GIT_INCLUDE_DIFF` | Include truncated diff in chunks | true |
|
|
546
|
+
| `GIT_MAX_DIFF_SIZE` | Maximum diff size in bytes per commit | 5000 |
|
|
547
|
+
| `GIT_TIMEOUT` | Timeout for git commands (ms) | 300000 |
|
|
548
|
+
| `GIT_MAX_CHUNK_SIZE` | Maximum characters per chunk | 3000 |
|
|
549
|
+
| `GIT_BATCH_SIZE` | Number of chunks to embed in one batch | 100 |
|
|
550
|
+
| `GIT_BATCH_RETRY_ATTEMPTS` | Retry attempts for failed batches | 3 |
|
|
551
|
+
| `GIT_SEARCH_LIMIT` | Default search result limit | 10 |
|
|
552
|
+
| `GIT_ENABLE_HYBRID` | Enable hybrid search with sparse vectors | true |
|
|
548
553
|
|
|
549
554
|
### Provider Comparison
|
|
550
555
|
|
|
@@ -577,6 +582,7 @@ See [examples/](examples/) directory for detailed guides:
|
|
|
577
582
|
| **Files not found** | Check `.gitignore` and `.contextignore` patterns |
|
|
578
583
|
| **Search returns no results** | Try broader queries, check if codebase is indexed with `get_index_status` |
|
|
579
584
|
| **Out of memory during index** | Reduce `CODE_CHUNK_SIZE` or `CODE_BATCH_SIZE` |
|
|
585
|
+
| **Node 24 tree-sitter error** | Run `CXXFLAGS='-std=c++20' npm install` - Node 24 requires C++20 for native modules |
|
|
580
586
|
|
|
581
587
|
## Development
|
|
582
588
|
|
|
@@ -596,7 +602,7 @@ npm run test:coverage # Coverage report
|
|
|
596
602
|
- **Integration Tests**: Code indexer (56), scanner (15), chunker (24), synchronizer (42), snapshot (26), merkle tree (28)
|
|
597
603
|
- **Git History Tests**: Git extractor (28), extractor integration (11), chunker (30), indexer (42), synchronizer (18)
|
|
598
604
|
|
|
599
|
-
**CI/CD**: GitHub Actions runs build, type-check, and tests on Node.js 22
|
|
605
|
+
**CI/CD**: GitHub Actions runs build, type-check, and tests on Node.js 22.x and 24.x for every push/PR.
|
|
600
606
|
|
|
601
607
|
## Contributing
|
|
602
608
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mhalder/qdrant-mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "MCP server for semantic search using local Qdrant and Ollama (default) with support for OpenAI, Cohere, and Voyage AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "mhalder",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=22.0.0 <
|
|
29
|
+
"node": ">=22.0.0 <25.0.0"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|