@mhalder/qdrant-mcp-server 3.1.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/CHANGELOG.md +4 -0
- package/README.md +18 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
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
|
+
|
|
1
5
|
## 3.1.0 (2026-01-22)
|
|
2
6
|
|
|
3
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)
|
package/README.md
CHANGED
|
@@ -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
|
|
package/package.json
CHANGED