@kinlab/kin-mcp 0.2.12 → 0.2.13

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/README.md +5 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # @kinlab/kin-mcp
2
2
 
3
+ > **Superseded by [`@kinlab/kin`](https://www.npmjs.com/package/@kinlab/kin)** — the
4
+ > canonical Kin install surface, which includes the MCP server (`kin mcp start`) along
5
+ > with the full CLI. This package keeps working for existing configurations; new setups
6
+ > should install `@kinlab/kin`.
7
+
3
8
  `@kinlab/kin-mcp` is the npm-friendly launcher for Kin's MCP server (the installed
4
9
  command is still `kin-mcp`).
5
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kinlab/kin-mcp",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Start Kin's MCP server through an npm-friendly wrapper.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,6 +14,7 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "test": "node --test",
17
+ "test:unit": "node --test ./test/index.test.js",
17
18
  "lint": "node --check ./bin/kin-mcp.js && node --check ./src/index.js && node --check ./test/index.test.js && node --check ./test/smoke-first-run.mjs",
18
19
  "smoke": "node ./test/smoke-first-run.mjs"
19
20
  },