@vectros-ai/mcp-server 0.5.1 → 0.5.2
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 +26 -0
- package/README.md +74 -9
- package/dist/cli-http.js +152 -2
- package/dist/cli-http.js.map +1 -1
- package/dist/cli-http.mjs +152 -2
- package/dist/cli-http.mjs.map +1 -1
- package/dist/cli.js +152 -2
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +152 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/index.js +152 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +152 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
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.2 — 2026-06-26
|
|
7
|
+
|
|
8
|
+
Distribution fix + SDK refresh. No tool, parameter, or result shapes changed.
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- `npx -y @vectros-ai/mcp-server` now starts the (stdio) server directly. The
|
|
13
|
+
package previously exposed only `vectros-mcp-server` and
|
|
14
|
+
`vectros-mcp-server-http`, so a bare `npx -y @vectros-ai/mcp-server` — the form
|
|
15
|
+
used in every client config and registry listing — could not pick a binary and
|
|
16
|
+
failed with *"could not determine executable to run."* A `mcp-server` binary
|
|
17
|
+
(matching the package's unscoped name) now makes the bare invocation resolve to
|
|
18
|
+
the stdio server. The explicit `vectros-mcp-server` / `vectros-mcp-server-http`
|
|
19
|
+
binaries are unchanged.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Updated the bundled `@vectros-ai/sdk` to **0.30.0**, keeping the server aligned
|
|
24
|
+
with the current Vectros API.
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- A `server.json` manifest (official MCP Registry schema) at the repository root,
|
|
29
|
+
plus one-click install artifacts: a Claude Desktop Extension (`.mcpb`),
|
|
30
|
+
`smithery.yaml`, and "Add to Cursor" / VS Code install links.
|
|
31
|
+
|
|
6
32
|
## 0.5.1 — 2026-06-25
|
|
7
33
|
|
|
8
34
|
Maintenance — refreshed the bundled Vectros SDK to the current API surface.
|
package/README.md
CHANGED
|
@@ -3,19 +3,31 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@vectros-ai/mcp-server)
|
|
4
4
|
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
[](https://cursor.com/install-mcp?name=vectros&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB2ZWN0cm9zLWFpL21jcC1zZXJ2ZXIiXSwiZW52Ijp7IlZFQ1RST1NfQVBJX0tFWSI6IiJ9fQ%3D%3D)
|
|
7
|
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=vectros&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40vectros-ai%2Fmcp-server%22%5D%2C%22env%22%3A%7B%22VECTROS_API_KEY%22%3A%22%22%7D%7D)
|
|
8
|
+
[](https://github.com/vectros-ai/vectros-mcp-server/releases/latest/download/vectros.mcpb)
|
|
9
|
+
|
|
10
|
+
> One-click badges install the **server entry** in your client. You still supply
|
|
11
|
+
> a key — run `npx -y @vectros-ai/cli bootstrap` (recommended) or paste your
|
|
12
|
+
> `ssk_...`. See [Connect from your client](#connect-from-your-client) and the
|
|
13
|
+
> [honest caveats](#honest-caveats).
|
|
14
|
+
|
|
15
|
+
A [Model Context Protocol](https://modelcontextprotocol.io) server for
|
|
16
|
+
**Vectros** — a typed, multi-tenant **record store unified with hybrid
|
|
17
|
+
search** and citation-grounded RAG. Deterministic lookups and enumeration
|
|
18
|
+
*and* semantic search over one isolated, per-customer index of records and
|
|
19
|
+
documents — so an agent gets memory that's precise, not just fuzzy recall.
|
|
20
|
+
Reached agent-natively here over MCP (Claude Desktop, Cursor, Claude Code,
|
|
21
|
+
Cline, Continue, VS Code, hosted platforms) — and the same data is
|
|
22
|
+
human-accessible through the Vectros app + SDKs.
|
|
11
23
|
|
|
12
24
|
```
|
|
13
25
|
npx -y @vectros-ai/mcp-server
|
|
14
26
|
```
|
|
15
27
|
|
|
16
28
|
Your agent can search your indexed corpus, query structured records,
|
|
17
|
-
ingest documents, and ask questions grounded against documents —
|
|
18
|
-
|
|
29
|
+
ingest documents, and ask questions grounded against documents — reaching
|
|
30
|
+
only your tenant's data, never the public web (there are no web tools).
|
|
19
31
|
|
|
20
32
|
## Quick start — one command
|
|
21
33
|
|
|
@@ -53,6 +65,47 @@ VECTROS_BOOTSTRAP_TOKEN=… npx -y @vectros-ai/cli bootstrap \
|
|
|
53
65
|
|
|
54
66
|
Prefer to wire it up by hand? See **Configure manually** below.
|
|
55
67
|
|
|
68
|
+
## Connect from your client
|
|
69
|
+
|
|
70
|
+
| Client | One-click | Manual |
|
|
71
|
+
|---|---|---|
|
|
72
|
+
| **Claude Desktop** | [Desktop Extension (`.mcpb`)](https://github.com/vectros-ai/vectros-mcp-server/releases/latest/download/vectros.mcpb) — double-click, paste your key | [JSON snippet](#configure-manually-claude-desktop-or-any-mcp-client) |
|
|
73
|
+
| **Cursor** | [](https://cursor.com/install-mcp?name=vectros&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB2ZWN0cm9zLWFpL21jcC1zZXJ2ZXIiXSwiZW52Ijp7IlZFQ1RST1NfQVBJX0tFWSI6IiJ9fQ%3D%3D) | `.cursor/mcp.json`, same shape as below |
|
|
74
|
+
| **VS Code** | [](https://insiders.vscode.dev/redirect/mcp/install?name=vectros&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40vectros-ai%2Fmcp-server%22%5D%2C%22env%22%3A%7B%22VECTROS_API_KEY%22%3A%22%22%7D%7D) | `.vscode/mcp.json`, same shape |
|
|
75
|
+
| **Claude Code** | `claude mcp add` (below) | [project `.mcp.json`](#configure-manually-claude-code) |
|
|
76
|
+
| **Cline / Continue** | — | same JSON snippet as Claude Desktop |
|
|
77
|
+
| **Smithery** | `npx -y @smithery/cli install @vectros-ai/mcp-server` | — |
|
|
78
|
+
| **Codex** | — | TOML snippet (below) |
|
|
79
|
+
|
|
80
|
+
The fastest path on **every** client is `npx -y @vectros-ai/cli bootstrap` — it
|
|
81
|
+
mints a scoped key and writes the config for you. The one-click buttons install
|
|
82
|
+
the server entry; you then supply the key (bootstrap, or paste your `ssk_...`).
|
|
83
|
+
|
|
84
|
+
**Codex** (`~/.codex/config.toml`):
|
|
85
|
+
|
|
86
|
+
```toml
|
|
87
|
+
[mcp_servers.vectros]
|
|
88
|
+
command = "npx"
|
|
89
|
+
args = ["-y", "@vectros-ai/mcp-server"]
|
|
90
|
+
env = { VECTROS_API_KEY = "ssk_live_..." }
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Honest caveats
|
|
94
|
+
|
|
95
|
+
Precision is the pitch — what this server deliberately does *not* do:
|
|
96
|
+
|
|
97
|
+
- **There's a human step.** Bootstrap needs a developer-portal sign-in / bridge
|
|
98
|
+
token. One command, but a person signs in — there is no fully unattended
|
|
99
|
+
provisioning.
|
|
100
|
+
- **No web tools, on purpose.** The agent surface has no web-search or web-fetch
|
|
101
|
+
tools at all. Vectros is the memory, not the browser.
|
|
102
|
+
- **Agent document upload is text-inline today.** An agent ingests document text
|
|
103
|
+
inline; on the stdio transport a jailed local-file upload is supported, but
|
|
104
|
+
bulk file upload from the agent surface isn't the path today.
|
|
105
|
+
- **Audit history is tamper-*evident*, not tamper-proof.** A state-continuity
|
|
106
|
+
chain makes out-of-band alteration *detectable*; it is not continuous
|
|
107
|
+
automated verification.
|
|
108
|
+
|
|
56
109
|
## Configure manually (Claude Desktop or any MCP client)
|
|
57
110
|
|
|
58
111
|
```json
|
|
@@ -226,9 +279,13 @@ a sidecar — the package also ships an HTTP binary:
|
|
|
226
279
|
VECTROS_API_KEY=ssk_live_... \
|
|
227
280
|
VECTROS_MCP_HTTP_PORT=8765 \
|
|
228
281
|
VECTROS_MCP_HTTP_BEARER_TOKEN=$(openssl rand -hex 32) \
|
|
229
|
-
npx -y @vectros-ai/mcp-server vectros-mcp-server-http
|
|
282
|
+
npx -y -p @vectros-ai/mcp-server vectros-mcp-server-http
|
|
230
283
|
```
|
|
231
284
|
|
|
285
|
+
> The HTTP binary is **not** the default — select it explicitly with
|
|
286
|
+
> `npx -p <pkg> vectros-mcp-server-http`. A bare `npx -y @vectros-ai/mcp-server`
|
|
287
|
+
> always starts the stdio server.
|
|
288
|
+
|
|
232
289
|
The server listens on `http://127.0.0.1:8765/mcp` by default. The
|
|
233
290
|
bearer token is optional but **strongly recommended for any
|
|
234
291
|
deployment beyond localhost** — without it, anyone who can reach the
|
|
@@ -277,10 +334,18 @@ await server.connect(createStdioTransport());
|
|
|
277
334
|
|
|
278
335
|
The server is on a pre-1.0 track toward a stable 1.0 release.
|
|
279
336
|
|
|
337
|
+
## Rate limits
|
|
338
|
+
|
|
339
|
+
Tool calls hit the same per-account per-minute rate limit as any API client (writes, searches,
|
|
340
|
+
and inference count against it; reads do not). On a `429` the server surfaces the error with its
|
|
341
|
+
`Retry-After` hint so the agent can pace and retry rather than blind-retrying. See the
|
|
342
|
+
[rate limits guide](https://docs.vectros.ai/guides/operations-trust/rate-limits) for the per-plan
|
|
343
|
+
limits.
|
|
344
|
+
|
|
280
345
|
## Building from source
|
|
281
346
|
|
|
282
347
|
```sh
|
|
283
|
-
git clone https://github.com/vectros-ai/mcp-server
|
|
348
|
+
git clone https://github.com/vectros-ai/vectros-mcp-server
|
|
284
349
|
cd mcp-server
|
|
285
350
|
npm install
|
|
286
351
|
npm run build
|