mcp-server-mcpindex 0.3.2 → 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/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
@@ -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`:
@@ -19,12 +33,16 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
19
33
  "mcpServers": {
20
34
  "mcpindex": {
21
35
  "command": "npx",
22
- "args": ["-y", "mcp-server-mcpindex"]
36
+ "args": ["-y", "mcp-server-mcpindex@latest"]
23
37
  }
24
38
  }
25
39
  }
26
40
  ```
27
41
 
42
+ > `@latest` keeps you current: this is the advisory discovery server (not the in-path drift
43
+ > gate), so it carries no version pin — `npx` fetches the newest on your next host restart, no
44
+ > manual upgrade step.
45
+
28
46
  Restart Claude Desktop. Then ask:
29
47
 
30
48
  > "Find me an MCP server that can read PDFs and write the contents to S3."
@@ -40,7 +58,7 @@ Add to `.cursor/mcp.json`:
40
58
  "mcpServers": {
41
59
  "mcpindex": {
42
60
  "command": "npx",
43
- "args": ["-y", "mcp-server-mcpindex"]
61
+ "args": ["-y", "mcp-server-mcpindex@latest"]
44
62
  }
45
63
  }
46
64
  }
@@ -51,7 +69,7 @@ Add to `.cursor/mcp.json`:
51
69
  Add to your Cline settings:
52
70
 
53
71
  ```bash
54
- npx -y mcp-server-mcpindex
72
+ npx -y mcp-server-mcpindex@latest
55
73
  ```
56
74
 
57
75
  ## Tools exposed
@@ -60,7 +78,7 @@ npx -y mcp-server-mcpindex
60
78
  | --- | --- |
61
79
  | `recommend_mcp_for_task` | Pass a natural-language task. Returns top 3 servers with reasoning, install commands, quality scores. |
62
80
  | `search_mcp_servers` | Keyword + semantic search across the full registry. Optional category filter. |
63
- | `get_install_command` | Get the exact install JSON for a server + a target client (Claude Desktop, Cursor, Cline, Zed). |
81
+ | `get_install_command` | Get the exact install JSON/CLI for a server + client (Claude Desktop, Claude Code, Cursor, Gemini CLI, Cline, Zed). |
64
82
  | `compare_servers` | Side-by-side comparison of 2-5 servers - quality scores, install paths, env vars. |
65
83
  | `check_tool_trust` | Pre-invocation advisory verdict for a specific tool on a server. Fail-CLOSED: returns UNVERIFIED when no verdict on file. |
66
84
  | `assess_server` | Aggregated pre-flight verdict across all tools on a server. Same shape as `check_tool_trust`. |
@@ -112,7 +130,7 @@ import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'
112
130
 
113
131
  const mcpindex = new Client({ name: 'gate', version: '1.0.0' }, { capabilities: {} });
114
132
  await mcpindex.connect(new StdioClientTransport({
115
- command: 'npx', args: ['-y', 'mcp-server-mcpindex'],
133
+ command: 'npx', args: ['-y', 'mcp-server-mcpindex@latest'],
116
134
  }));
117
135
 
118
136
  // gateToolCall wraps any agent tool dispatch. Plug it in front of
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "mcp-server-mcpindex",
3
- "version": "0.3.2",
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
@@ -78,7 +78,7 @@ const TOOLS = [
78
78
  },
79
79
  client: {
80
80
  type: 'string',
81
- enum: ['claude-desktop', 'cursor', 'cline', 'zed'],
81
+ enum: ['claude-desktop', 'claude-code', 'cursor', 'gemini-cli', 'cline', 'zed'],
82
82
  description: 'Target client.',
83
83
  },
84
84
  },
@@ -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