@jmtrin/kevin-mcp 2.2.0 → 2.2.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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```
6
6
  ╔══════════════════════════════════════════════╗
7
- ║ @jmtrin/kevin-mcp 2.0.0 ║
7
+ ║ @jmtrin/kevin-mcp 2.2.1 ║
8
8
  ║ MCP Bridge for Kevin ║
9
9
  ║ stdio · zero network · WAL ║
10
10
  ╚══════════════════════════════════════════════╝
@@ -14,7 +14,7 @@
14
14
 
15
15
  **Kevin MCP exposes the local `kevin.db` to Claude Code, Codex, Cursor, Windsurf, Gemini CLI and Opencode through one stdio server.**
16
16
 
17
- ![version](https://img.shields.io/badge/version-2.0.0-blue)
17
+ ![version](https://img.shields.io/badge/version-2.2.1-blue)
18
18
  ![node](https://img.shields.io/badge/node-%E2%89%A522.5-green)
19
19
  ![mcp](https://img.shields.io/badge/MCP-1.30.0-purple)
20
20
  ![transport](https://img.shields.io/badge/transport-stdio-black)
@@ -25,6 +25,10 @@
25
25
  > **No new database. No HTTP. One WAL file, two processes.**
26
26
 
27
27
  > **Commonwealth (2.0.0):** same bridge, same WAL, now with `kevin_sources` provenance and sharded OKF v3 support (`014`) — reader walks `knowledge/` shards, writer gated by `okf_write_version`.
28
+ >
29
+ > **Relay (2.1.0):** `mcp_write_enabled` / `mcp_approve_enabled` / `mcp_repo_override` settings + 5 `mcp_*` metrics (`013`); gated writes unchanged.
30
+ >
31
+ > **Harbor (2.2.0):** the MCP trio is now seeded by migration `016`, so fresh `kevin_config list` shows all 44 keys — gates and defaults unchanged (`'0'`/`'0'`/`''`).
28
32
 
29
33
  ---
30
34
 
@@ -233,7 +237,7 @@ npm pack --dry-run -w @jmtrin/kevin-mcp
233
237
  node packages/mcp/dist/server.js --help
234
238
  ```
235
239
 
236
- Monorepo publish order: `core → tui → plugin → mcp` (exact `2.0.0` pin), see `docs/DISTRIBUTION.md`.
240
+ Monorepo publish order: `core → tui → plugin → mcp` (exact `2.2.1` pin), see `docs/DISTRIBUTION.md`.
237
241
 
238
242
  ---
239
243
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmtrin/kevin-mcp",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Kevin MCP — stdio bridge for any MCP harness (Bridge)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,7 @@
21
21
  "prepublishOnly": "npm run build"
22
22
  },
23
23
  "dependencies": {
24
- "@jmtrin/kevin-core": "2.2.0",
24
+ "@jmtrin/kevin-core": "2.2.1",
25
25
  "@modelcontextprotocol/sdk": "1.30.0",
26
26
  "zod": "^3.25.0"
27
27
  },