@clauderecallhq/cli 0.61.3 → 0.61.5

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 +6 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ Claude Recall indexes every Claude Code session you've ever run, surfaces what m
21
21
  <br />
22
22
 
23
23
  [![npm](https://img.shields.io/npm/v/@clauderecallhq/cli?style=flat-square&color=f97316&label=npm)](https://www.npmjs.com/package/@clauderecallhq/cli)
24
- [![Node](https://img.shields.io/badge/node-%E2%89%A520-43853d?style=flat-square&logo=node.js&logoColor=white)](https://nodejs.org)
24
+ [![Node](https://img.shields.io/badge/node-%E2%89%A522-43853d?style=flat-square&logo=node.js&logoColor=white)](https://nodejs.org)
25
25
  [![TypeScript](https://img.shields.io/badge/typescript-strict-3178c6?style=flat-square&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
26
26
  [![Local-first](https://img.shields.io/badge/local--first-127.0.0.1%20only-0b0c0f?style=flat-square)](#privacy--security)
27
27
  [![License](https://img.shields.io/badge/license-proprietary-1a1a2e?style=flat-square)](#license)
@@ -187,8 +187,8 @@ Let Claude label your sessions automatically. Two modes: **MCP mode** (zero-setu
187
187
  </td>
188
188
  <td width="50%" valign="top">
189
189
 
190
- ### MCP Server &nbsp;<sub>31 tools</sub>
191
- Expose Recall to Claude Desktop, Claude Code, or any MCP client as native tools. **13 read tools always on**, **18 write tools** opt-in with rate limiting and append-only audit logging.
190
+ ### MCP Server &nbsp;<sub>33 tools</sub>
191
+ Expose Recall to Claude Desktop, Claude Code, or any MCP client as native tools. **14 read tools always on**, **19 write tools** opt-in with rate limiting and append-only audit logging.
192
192
 
193
193
  ```bash
194
194
  recall mcp
@@ -452,7 +452,7 @@ All writes are rate-limited (default 60/min), zod-validated, and audited to `~/.
452
452
  CLI HTTP server (Hono, 127.0.0.1 only)
453
453
  | |
454
454
  recall ... Web UI (React + Tailwind SPA, Vite-bundled)
455
- MCP server (stdio, 31 tools, opt-in writes)
455
+ MCP server (stdio, 33 tools, opt-in writes)
456
456
  ```
457
457
 
458
458
  ### Data stays local
@@ -600,7 +600,7 @@ recall audit-secrets # scan index for residual secrets
600
600
 
601
601
  | Layer | Technology |
602
602
  |---|---|
603
- | CLI + daemon | TypeScript (strict), Node 20+, ESM |
603
+ | CLI + daemon | TypeScript (strict), Node 22+, ESM |
604
604
  | HTTP server | Hono + @hono/node-server |
605
605
  | Database | better-sqlite3 with FTS5 full-text search |
606
606
  | Vector store | sqlite-vec (768d, on-device) |
@@ -652,7 +652,7 @@ Claude Recall ships on every surface a developer already works in.
652
652
  |---|---|---|
653
653
  | **npm** (CLI + MCP) | [`@clauderecallhq/cli`](https://www.npmjs.com/package/@clauderecallhq/cli) | `npm i -g @clauderecallhq/cli` |
654
654
  | **VS Code Marketplace** | [`clauderecallhq.clauderecall-vscode`](https://marketplace.visualstudio.com/items?itemName=clauderecallhq.clauderecall-vscode) | Search "Claude Recall" in Extensions |
655
- | **MCP Registry** | [`io.github.clauderecallhq/recall`](https://registry.modelcontextprotocol.io/) | Auto-discovered by MCP clients |
655
+ | **MCP Registry** | [`com.clauderecall/recall`](https://registry.modelcontextprotocol.io/v0/servers?search=clauderecall) | Auto-discovered by MCP clients |
656
656
  | **Claude Code Plugin Hub** | `claude-recall` | `/plugin install claude-recall` in Claude Code |
657
657
  | **Website** | [clauderecall.com](https://clauderecall.com) | -- |
658
658
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clauderecallhq/cli",
3
- "version": "0.61.3",
3
+ "version": "0.61.5",
4
4
  "description": "Never lose a Claude Code session again. Local, fast, searchable memory over every session you've ever run.",
5
5
  "type": "module",
6
6
  "homepage": "https://clauderecall.com",
@@ -15,7 +15,7 @@
15
15
  "recall": "dist/cli.js",
16
16
  "claude-recall-mcp": "dist/mcp-server.js"
17
17
  },
18
- "mcpName": "io.github.clauderecallhq/recall",
18
+ "mcpName": "com.clauderecall/recall",
19
19
  "main": "dist/cli.js",
20
20
  "files": [
21
21
  "dist/cli.js",