mcp-server-mcpindex 0.3.3 → 0.3.4
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/README.md +15 -1
- package/package.json +3 -2
- package/src/index.mjs +1 -1
- package/src/update-check.mjs +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,20 @@ A drop-in MCP server that lets your agent discover, compare, install, and pre-fl
|
|
|
10
10
|
npm install -g mcp-server-mcpindex
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
This is the **directory / advisory** client (recommend, search, trust). It does **not** install the in-path drift gate — that is `curl -fsSL https://mcpindex.ai/install.sh | sh`.
|
|
14
|
+
|
|
15
|
+
### Claude Code
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
claude mcp add --scope user mcpindex -- npx -y mcp-server-mcpindex@latest
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Gemini CLI
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
gemini mcp add -s user mcpindex npx -y mcp-server-mcpindex@latest
|
|
25
|
+
```
|
|
26
|
+
|
|
13
27
|
## Use it from Claude Desktop
|
|
14
28
|
|
|
15
29
|
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
@@ -64,7 +78,7 @@ npx -y mcp-server-mcpindex@latest
|
|
|
64
78
|
| --- | --- |
|
|
65
79
|
| `recommend_mcp_for_task` | Pass a natural-language task. Returns top 3 servers with reasoning, install commands, quality scores. |
|
|
66
80
|
| `search_mcp_servers` | Keyword + semantic search across the full registry. Optional category filter. |
|
|
67
|
-
| `get_install_command` | Get the exact install JSON for a server +
|
|
81
|
+
| `get_install_command` | Get the exact install JSON/CLI for a server + client (Claude Desktop, Claude Code, Cursor, Gemini CLI, Cline, Zed). |
|
|
68
82
|
| `compare_servers` | Side-by-side comparison of 2-5 servers - quality scores, install paths, env vars. |
|
|
69
83
|
| `check_tool_trust` | Pre-invocation advisory verdict for a specific tool on a server. Fail-CLOSED: returns UNVERIFIED when no verdict on file. |
|
|
70
84
|
| `assess_server` | Aggregated pre-flight verdict across all tools on a server. Same shape as `check_tool_trust`. |
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-mcpindex",
|
|
3
|
-
"version": "0.3.
|
|
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.",
|
|
3
|
+
"version": "0.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, Claude Code, Cursor, Gemini CLI, Cline, Zed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
7
7
|
"model-context-protocol",
|
|
8
8
|
"claude",
|
|
9
9
|
"cursor",
|
|
10
|
+
"gemini",
|
|
10
11
|
"agent",
|
|
11
12
|
"discovery",
|
|
12
13
|
"trust",
|
package/src/index.mjs
CHANGED
package/src/update-check.mjs
CHANGED
|
@@ -50,7 +50,7 @@ export function formatUpdateMessage(current, latest) {
|
|
|
50
50
|
`mcp-server-mcpindex ${current} -> ${latest} available. ` +
|
|
51
51
|
`Update: npm i -g mcp-server-mcpindex@latest ` +
|
|
52
52
|
`(or npx fetches it on next launch), then restart your MCP host ` +
|
|
53
|
-
`(Claude Desktop / Cursor / Cline / Zed) to load it.`
|
|
53
|
+
`(Claude Desktop / Claude Code / Cursor / Gemini CLI / Cline / Zed) to load it.`
|
|
54
54
|
);
|
|
55
55
|
}
|
|
56
56
|
|