@vectros-ai/mcp-server 0.5.0 → 0.5.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 +11 -0
- package/README.md +3 -0
- package/dist/cli-http.js +4 -2
- package/dist/cli-http.js.map +1 -1
- package/dist/cli-http.mjs +4 -2
- package/dist/cli-http.mjs.map +1 -1
- package/dist/cli.js +4 -2
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +4 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to `@vectros-ai/mcp-server` are documented here.
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org).
|
|
5
5
|
|
|
6
|
+
## 0.5.1 — 2026-06-25
|
|
7
|
+
|
|
8
|
+
Maintenance — refreshed the bundled Vectros SDK to the current API surface.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated the bundled `@vectros-ai/sdk` to **0.29.9**, keeping the server aligned
|
|
13
|
+
with the current Vectros API. Records and documents with no searchable text now
|
|
14
|
+
report the `SKIPPED` index status (stored and retrievable, simply not indexed)
|
|
15
|
+
rather than `FAILED`. No tools, parameters, or results changed shape.
|
|
16
|
+
|
|
6
17
|
## 0.5.0 — 2026-06-20
|
|
7
18
|
|
|
8
19
|
Initial public release of the Vectros MCP server.
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @vectros-ai/mcp-server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@vectros-ai/mcp-server)
|
|
4
|
+
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
5
|
+
|
|
3
6
|
A [Model Context Protocol](https://modelcontextprotocol.io) server
|
|
4
7
|
that exposes Vectros — hybrid search, structured records, documents,
|
|
5
8
|
and in-perimeter RAG / document Q&A — to MCP-aware agents (Claude
|
package/dist/cli-http.js
CHANGED
|
@@ -513,6 +513,7 @@ var DocumentResponse;
|
|
|
513
513
|
Extracting: "EXTRACTING",
|
|
514
514
|
PendingIndex: "PENDING_INDEX",
|
|
515
515
|
Indexed: "INDEXED",
|
|
516
|
+
Skipped: "SKIPPED",
|
|
516
517
|
Stored: "STORED",
|
|
517
518
|
Failed: "FAILED"
|
|
518
519
|
};
|
|
@@ -678,6 +679,7 @@ var RecordResponse;
|
|
|
678
679
|
RecordResponse2.IndexStatus = {
|
|
679
680
|
PendingIndex: "PENDING_INDEX",
|
|
680
681
|
Indexed: "INDEXED",
|
|
682
|
+
Skipped: "SKIPPED",
|
|
681
683
|
Failed: "FAILED"
|
|
682
684
|
};
|
|
683
685
|
RecordResponse2.IndexMode = {
|
|
@@ -8543,8 +8545,8 @@ function warnOnSuboptimalKey(key, log) {
|
|
|
8543
8545
|
|
|
8544
8546
|
// src/build-info.ts
|
|
8545
8547
|
var BUILD_INFO = {
|
|
8546
|
-
mcpServer: true ? "0.5.
|
|
8547
|
-
sdk: true ? "0.29.
|
|
8548
|
+
mcpServer: true ? "0.5.1" : "dev",
|
|
8549
|
+
sdk: true ? "0.29.9" : "dev"
|
|
8548
8550
|
};
|
|
8549
8551
|
|
|
8550
8552
|
// src/log.ts
|