handoff-mcp-server 0.24.1 → 0.24.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.
package/Cargo.lock CHANGED
@@ -145,7 +145,7 @@ dependencies = [
145
145
 
146
146
  [[package]]
147
147
  name = "handoff-mcp"
148
- version = "0.24.1"
148
+ version = "0.24.2"
149
149
  dependencies = [
150
150
  "anyhow",
151
151
  "chrono",
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "handoff-mcp"
3
- version = "0.24.1"
3
+ version = "0.24.2"
4
4
  edition = "2021"
5
5
  description = "MCP server that gives AI coding agents persistent memory across sessions"
6
6
  license = "MIT"
package/README.md CHANGED
@@ -85,6 +85,27 @@ This adds hooks that inject relevant project memories on every prompt and file
85
85
  edit. Disable anytime with `/plugin disable handoff-mcp-hooks@handoff-mcp-marketplace` —
86
86
  the MCP server and skills remain active.
87
87
 
88
+ > **Important:** The hooks require a `handoff` MCP server entry in the
89
+ > project's `.mcp.json`. If your project doesn't already have one (e.g. you
90
+ > only use the plugin), add it:
91
+ >
92
+ > ```json
93
+ > {
94
+ > "mcpServers": {
95
+ > "handoff": {
96
+ > "type": "stdio",
97
+ > "command": "handoff-mcp",
98
+ > "args": [],
99
+ > "env": {}
100
+ > }
101
+ > }
102
+ > }
103
+ > ```
104
+ >
105
+ > Without this entry, the hooks will show "not connected" errors on every
106
+ > prompt. The plugin's built-in MCP server is accessible to tools but not
107
+ > to hooks — this is a Claude Code limitation.
108
+
88
109
  > The `handoff-task-loop` and `handoff-mcp-hooks` plugins ship with
89
110
  > `defaultEnabled: false`, so they need an explicit `/plugin enable` step after
90
111
  > install. The main `handoff-mcp` plugin is `defaultEnabled: true` and skips it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-mcp-server",
3
- "version": "0.24.1",
3
+ "version": "0.24.2",
4
4
  "description": "MCP server that gives AI coding agents persistent memory across sessions",
5
5
  "license": "MIT",
6
6
  "author": "AlphaElements <66808803+alphaelements@users.noreply.github.com>",