mcp-server-mcpindex 0.3.2 → 0.3.3
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 +6 -0
- package/README.md +8 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `mcp-server-mcpindex` are recorded here.
|
|
|
4
4
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.3.3] - 2026-06-08
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **Recommended install now rides `@latest`.** The docs wire `npx -y mcp-server-mcpindex@latest` so the host fetches the newest discovery server on each restart — no manual upgrade step. This server is the *advisory* recommender (`recommend_mcp_for_task` / `check_tool_trust` / `assess_server`), **not** the in-path drift gate, so it carries no version pin (the gate, `mcpindex-preflight`, stays pinned + notify-only on purpose). The startup update notice already prints the exact `npm i -g …@latest` command for anyone who pins.
|
|
12
|
+
|
|
7
13
|
## [0.3.2] - 2026-06-08
|
|
8
14
|
|
|
9
15
|
### Changed
|
package/README.md
CHANGED
|
@@ -19,12 +19,16 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
|
19
19
|
"mcpServers": {
|
|
20
20
|
"mcpindex": {
|
|
21
21
|
"command": "npx",
|
|
22
|
-
"args": ["-y", "mcp-server-mcpindex"]
|
|
22
|
+
"args": ["-y", "mcp-server-mcpindex@latest"]
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
> `@latest` keeps you current: this is the advisory discovery server (not the in-path drift
|
|
29
|
+
> gate), so it carries no version pin — `npx` fetches the newest on your next host restart, no
|
|
30
|
+
> manual upgrade step.
|
|
31
|
+
|
|
28
32
|
Restart Claude Desktop. Then ask:
|
|
29
33
|
|
|
30
34
|
> "Find me an MCP server that can read PDFs and write the contents to S3."
|
|
@@ -40,7 +44,7 @@ Add to `.cursor/mcp.json`:
|
|
|
40
44
|
"mcpServers": {
|
|
41
45
|
"mcpindex": {
|
|
42
46
|
"command": "npx",
|
|
43
|
-
"args": ["-y", "mcp-server-mcpindex"]
|
|
47
|
+
"args": ["-y", "mcp-server-mcpindex@latest"]
|
|
44
48
|
}
|
|
45
49
|
}
|
|
46
50
|
}
|
|
@@ -51,7 +55,7 @@ Add to `.cursor/mcp.json`:
|
|
|
51
55
|
Add to your Cline settings:
|
|
52
56
|
|
|
53
57
|
```bash
|
|
54
|
-
npx -y mcp-server-mcpindex
|
|
58
|
+
npx -y mcp-server-mcpindex@latest
|
|
55
59
|
```
|
|
56
60
|
|
|
57
61
|
## Tools exposed
|
|
@@ -112,7 +116,7 @@ import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'
|
|
|
112
116
|
|
|
113
117
|
const mcpindex = new Client({ name: 'gate', version: '1.0.0' }, { capabilities: {} });
|
|
114
118
|
await mcpindex.connect(new StdioClientTransport({
|
|
115
|
-
command: 'npx', args: ['-y', 'mcp-server-mcpindex'],
|
|
119
|
+
command: 'npx', args: ['-y', 'mcp-server-mcpindex@latest'],
|
|
116
120
|
}));
|
|
117
121
|
|
|
118
122
|
// gateToolCall wraps any agent tool dispatch. Plug it in front of
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-mcpindex",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "An MCP server for finding MCP servers, plus advisory trust verdicts (check_tool_trust, assess_server) for agent frameworks. Drop-in for Claude Desktop, Cursor, Cline, Zed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|