mcp-server-mcpindex 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +7 -4
package/CHANGELOG.md CHANGED
@@ -4,6 +4,17 @@ 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.2.2] - 2026-05-31
8
+
9
+ ### Changed
10
+
11
+ - **Repository metadata now points at the monorepo source.** `repository` is `mcpindex-ai/mcpindex-web` with `"directory": "mcp-server-mcpindex"` (the npm-standard convention for a package whose source lives in a monorepo subdirectory), and `bugs` points at that repo's issues. The previously-linked standalone repo `mcpindex-ai/mcp-server-mcpindex` was an orphaned `0.1.0` snapshot (pre-trust, no `trust.mjs`); it has been archived in favor of a single source of truth. No code change - `npm install` behaves identically to `0.2.1`.
12
+
13
+ ### Added
14
+
15
+ - **`npm run release`** - one-command release (syntax check, tests, CHANGELOG-entry assertion, version, publish, tag) so the source-to-npm step can no longer drift by being done by hand.
16
+ - **`npm run check-published`** - fails when the in-tree version is ahead of the published npm version (catches "edited but forgot to publish").
17
+
7
18
  ## [0.2.1] - 2026-05-29
8
19
 
9
20
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-mcpindex",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
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",
@@ -16,10 +16,11 @@
16
16
  "homepage": "https://mcpindex.ai",
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "https://github.com/mcpindex-ai/mcp-server-mcpindex"
19
+ "url": "https://github.com/mcpindex-ai/mcpindex-web",
20
+ "directory": "mcp-server-mcpindex"
20
21
  },
21
22
  "bugs": {
22
- "url": "https://github.com/mcpindex-ai/mcp-server-mcpindex/issues"
23
+ "url": "https://github.com/mcpindex-ai/mcpindex-web/issues"
23
24
  },
24
25
  "author": "Bhartis LLC <hello@mcpindex.ai>",
25
26
  "license": "MIT",
@@ -39,7 +40,9 @@
39
40
  ],
40
41
  "scripts": {
41
42
  "build": "node --check src/index.mjs && node --check src/trust.mjs",
42
- "test": "node --test test/*.test.mjs"
43
+ "test": "node --test test/*.test.mjs",
44
+ "check-published": "node scripts/check-published.mjs",
45
+ "release": "node scripts/release.mjs"
43
46
  },
44
47
  "dependencies": {
45
48
  "@modelcontextprotocol/sdk": "^1.0.0"