@luanpdd/kit-mcp 0.4.0 → 0.4.1

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
@@ -6,6 +6,14 @@ Format: [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) · Versioning:
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.1] - 2026-05-03
10
+
11
+ ### Fixed
12
+ - `src/mcp-server/index.js` was importing `DEFAULT_KIT_ROOT` from `core/kit.js`, but that export was renamed to `BUNDLED_KIT_ROOT` / `resolveKitRoot` during the v0.2.0 refactor. The unused import wasn't caught by CI (which only smoke-tests CLI commands, not MCP server boot) and made the server crash on `npx -y @luanpdd/kit-mcp` for any sync/install command. Removed the dead import — server now boots cleanly.
13
+
14
+ ### Tests (suggestion)
15
+ - CI should boot `node bin/mcp.js` and validate exit. Tracked in roadmap.
16
+
9
17
  ## [0.4.0] - 2026-05-03
10
18
 
11
19
  ### Changed
@@ -150,7 +158,8 @@ npx -y @luanpdd/kit-mcp sync install claude-code --project-root .
150
158
  - CLI mirror of all MCP tools.
151
159
  - `install` command that registers kit-mcp into an IDE's MCP config (JSON for Claude/Cursor/Gemini/Windsurf, TOML for Codex).
152
160
 
153
- [Unreleased]: https://github.com/luanpdd/kit-mcp/compare/v0.4.0...HEAD
161
+ [Unreleased]: https://github.com/luanpdd/kit-mcp/compare/v0.4.1...HEAD
162
+ [0.4.1]: https://github.com/luanpdd/kit-mcp/compare/v0.4.0...v0.4.1
154
163
  [0.4.0]: https://github.com/luanpdd/kit-mcp/compare/v0.3.0...v0.4.0
155
164
  [0.3.0]: https://github.com/luanpdd/kit-mcp/compare/v0.2.1...v0.3.0
156
165
  [0.2.0]: https://github.com/luanpdd/kit-mcp/compare/v0.1.6...v0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luanpdd/kit-mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Generic infrastructure to ship YOUR personal kit of agents/commands/skills as an MCP server, with cross-IDE sync (Claude Code, Cursor, Codex, Gemini, Windsurf, Antigravity, Copilot, Trae).",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,7 @@ import { Server } from '@modelcontextprotocol/sdk/server/index.js';
12
12
  import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
13
13
  import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js';
14
14
 
15
- import { listKit, searchKit, findItem, DEFAULT_KIT_ROOT } from '../core/kit.js';
15
+ import { listKit, searchKit, findItem } from '../core/kit.js';
16
16
  import { listTargets } from '../core/registry.js';
17
17
  import { syncTo, statusOf, removeFrom } from '../core/sync.js';
18
18
  import { detectReverse, applyReverse } from '../core/reverse-sync.js';