mcp-voice-hooks 1.0.20 ā 1.0.21
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/README.md +2 -2
- package/bin/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -28,8 +28,8 @@ npm install -g @anthropic-ai/claude-code@">=1.0.45"
|
|
28
28
|
### 2. Install Voice Mode
|
29
29
|
|
30
30
|
```bash
|
31
|
-
npx mcp-voice-hooks install-hooks
|
32
|
-
claude mcp add voice-hooks npx mcp-voice-hooks
|
31
|
+
npx mcp-voice-hooks@latest install-hooks
|
32
|
+
claude mcp add voice-hooks npx mcp-voice-hooks@latest
|
33
33
|
```
|
34
34
|
|
35
35
|
## Usage
|
package/bin/cli.js
CHANGED
@@ -22,7 +22,7 @@ async function main() {
|
|
22
22
|
await configureClaudeCodeSettings();
|
23
23
|
|
24
24
|
console.log('\nā
Installation complete!');
|
25
|
-
console.log('š To add the server to Claude Code, run: `claude mcp add voice-hooks npx mcp-voice-hooks`');
|
25
|
+
console.log('š To add the server to Claude Code, run: `claude mcp add voice-hooks npx mcp-voice-hooks@latest`');
|
26
26
|
} else if (command === 'uninstall') {
|
27
27
|
console.log('šļø Uninstalling MCP Voice Hooks...');
|
28
28
|
await uninstall();
|