mcp-server-mcpindex 0.3.8 → 0.3.9

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.9] - 2026-07-15
8
+
9
+ ### Changed
10
+
11
+ - **Tool descriptions now have a single source of truth (`src/tools-meta.json`).** The stdio CLI (`src/index.mjs`) and the hosted remote endpoint both import the shared name/title/description for the 6 tools, so their copy can no longer drift. Description text is byte-identical to 0.3.8; this is an internal refactor with no change to the advertised tool copy. Bumped so the refactored source is releasable to npm.
12
+
7
13
  ## [0.3.8] - 2026-07-15
8
14
 
9
15
  ### Fixed
package/README.md CHANGED
@@ -12,6 +12,16 @@ npm install -g mcp-server-mcpindex
12
12
 
13
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
14
 
15
+ ### Or connect remotely (no install)
16
+
17
+ Prefer not to install anything? mcpindex is also a **hosted remote MCP server**. Point any client that supports remote MCP (Claude connectors, Cursor, etc.) at:
18
+
19
+ ```
20
+ https://mcpindex.ai/api/mcp
21
+ ```
22
+
23
+ Streamable HTTP, no credentials. Same six tools as the npm package.
24
+
15
25
  ### Claude Code
16
26
 
17
27
  ```bash
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": "0.2",
3
3
  "name": "mcp-server-mcpindex",
4
4
  "display_name": "mcpindex",
5
- "version": "0.3.8",
5
+ "version": "0.3.9",
6
6
  "description": "The MCP directory that vets servers, not just lists them: search by task, then get an advisory screen on a server before an agent calls its tools. Advisory, conformance monitored not enforced, not a safety verdict.",
7
7
  "long_description": "mcpindex is the MCP directory that vets servers, not just lists them. Search by task to find the right server (ranked picks with install commands and quality scores), then get an advisory screen on a specific tool or a whole server before your agent calls it: whether each tool does what it claims. check_tool_trust and assess_server return an advisory verdict (REVIEW / UNVERIFIED at v1), backed by conformance monitoring and a live drift ledger, and fail closed to human review. Zero-config: queries the public mcpindex.ai API, no credentials. Monitored, not enforced; not a safety verdict and not an in-path gate.",
8
8
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-mcpindex",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "mcpName": "io.github.gautamgb/mcp-server-mcpindex",
5
5
  "description": "The MCP directory that vets servers, not just lists them. Search by task, then get an advisory screen on a server before your agent calls its tools: whether each tool does what it claims, backed by conformance monitoring and a public drift ledger. Advisory (REVIEW / UNVERIFIED), monitored not enforced, not a safety verdict. Drop-in for Claude Desktop, Claude Code, Cursor, Gemini CLI, Cline, Zed.",
6
6
  "keywords": [
package/src/index.mjs CHANGED
@@ -19,6 +19,10 @@ const API_BASE = process.env.MCPINDEX_API_BASE || 'https://mcpindex.ai';
19
19
  // Single source of truth for the running version - read from package.json so the
20
20
  // User-Agent and the update-check can never drift from what npm actually shipped.
21
21
  const PKG_VERSION = createRequire(import.meta.url)('../package.json').version;
22
+ // Single source of truth for tool name/description, shared with the hosted
23
+ // remote endpoint (mcpindex-web/app/api/[transport]/route.ts) so copy can't drift.
24
+ const TOOL_META = createRequire(import.meta.url)('./tools-meta.json');
25
+ const TOOL_DESC = Object.fromEntries(TOOL_META.map((m) => [m.name, m.description]));
22
26
 
23
27
  const server = new Server(
24
28
  { name: 'mcp-server-mcpindex', version: PKG_VERSION },
@@ -32,7 +36,7 @@ const TOOLS = [
32
36
  {
33
37
  name: 'recommend_mcp_for_task',
34
38
  description:
35
- 'Recommend the best MCP servers for a natural-language task. Returns top 3 ranked picks with reasoning, install commands, and quality scores. Use this when the user asks for the right MCP server for a task they want to do.',
39
+ TOOL_DESC.recommend_mcp_for_task,
36
40
  inputSchema: {
37
41
  type: 'object',
38
42
  properties: {
@@ -48,7 +52,7 @@ const TOOLS = [
48
52
  {
49
53
  name: 'search_mcp_servers',
50
54
  description:
51
- 'Keyword + semantic search across the full MCP server registry. Use when the user knows what tool category they want but not which server.',
55
+ TOOL_DESC.search_mcp_servers,
52
56
  inputSchema: {
53
57
  type: 'object',
54
58
  properties: {
@@ -70,7 +74,7 @@ const TOOLS = [
70
74
  {
71
75
  name: 'get_install_command',
72
76
  description:
73
- 'Get the exact install command for a given MCP server and client. Returns a JSON block ready to paste into the client config.',
77
+ TOOL_DESC.get_install_command,
74
78
  inputSchema: {
75
79
  type: 'object',
76
80
  properties: {
@@ -91,7 +95,7 @@ const TOOLS = [
91
95
  {
92
96
  name: 'compare_servers',
93
97
  description:
94
- 'Side-by-side comparison of 2-5 MCP servers - quality scores, install paths, transport types, env vars.',
98
+ TOOL_DESC.compare_servers,
95
99
  inputSchema: {
96
100
  type: 'object',
97
101
  properties: {
@@ -109,7 +113,7 @@ const TOOLS = [
109
113
  {
110
114
  name: 'check_tool_trust',
111
115
  description:
112
- 'Pre-invocation advisory screen for a specific tool on an MCP server. Returns an advisory verdict object (directive ALLOW | DENY | REVIEW | UNVERIFIED, dimensions, freshness). At v1 the public screen produces REVIEW or UNVERIFIED only - ALLOW/DENY are reserved. Not the in-path gate (mcpindex-gate). Agents SHOULD treat UNVERIFIED as "human review required", never as ALLOW.',
116
+ TOOL_DESC.check_tool_trust,
113
117
  inputSchema: {
114
118
  type: 'object',
115
119
  properties: {
@@ -128,7 +132,7 @@ const TOOLS = [
128
132
  {
129
133
  name: 'assess_server',
130
134
  description:
131
- 'Aggregated pre-flight trust assessment across all tools on an MCP server. Same verdict shape as check_tool_trust. Use for "is THIS server worth integrating?" decisions. v1 advisory; conformance monitored not enforced; verdicts may be UNVERIFIED if not yet probed.',
135
+ TOOL_DESC.assess_server,
132
136
  inputSchema: {
133
137
  type: 'object',
134
138
  properties: {
@@ -0,0 +1,32 @@
1
+ [
2
+ {
3
+ "name": "recommend_mcp_for_task",
4
+ "title": "Recommend MCP servers for a task",
5
+ "description": "Recommend the best MCP servers for a natural-language task. Returns top 3 ranked picks with reasoning, install commands, and quality scores. Use this when the user asks for the right MCP server for a task they want to do."
6
+ },
7
+ {
8
+ "name": "search_mcp_servers",
9
+ "title": "Search MCP servers",
10
+ "description": "Keyword + semantic search across the full MCP server registry. Use when the user knows what tool category they want but not which server."
11
+ },
12
+ {
13
+ "name": "get_install_command",
14
+ "title": "Get install command",
15
+ "description": "Get the exact install command for a given MCP server and client. Returns a JSON block ready to paste into the client config."
16
+ },
17
+ {
18
+ "name": "compare_servers",
19
+ "title": "Compare MCP servers",
20
+ "description": "Side-by-side comparison of 2-5 MCP servers - quality scores, install paths, transport types, env vars."
21
+ },
22
+ {
23
+ "name": "check_tool_trust",
24
+ "title": "Check tool trust (advisory)",
25
+ "description": "Pre-invocation advisory screen for a specific tool on an MCP server. Returns an advisory verdict object (directive ALLOW | DENY | REVIEW | UNVERIFIED, dimensions, freshness). At v1 the public screen produces REVIEW or UNVERIFIED only - ALLOW/DENY are reserved. Not the in-path gate (mcpindex-gate). Agents SHOULD treat UNVERIFIED as \"human review required\", never as ALLOW."
26
+ },
27
+ {
28
+ "name": "assess_server",
29
+ "title": "Assess server trust (advisory)",
30
+ "description": "Aggregated pre-flight trust assessment across all tools on an MCP server. Same verdict shape as check_tool_trust. Use for \"is THIS server worth integrating?\" decisions. v1 advisory; conformance monitored not enforced; verdicts may be UNVERIFIED if not yet probed."
31
+ }
32
+ ]