mcp-voice-hooks 1.0.31 → 1.0.33

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 CHANGED
@@ -16,28 +16,17 @@ Voice recognition and text-to-speech are handled by the browser, so there is not
16
16
 
17
17
  ## Installation
18
18
 
19
- There are two ways to install Voice Mode for Claude Code:
19
+ Installation is easy.
20
20
 
21
- ### Method 1: Plugin Installation (Recommended)
22
-
23
- The easiest way to install is using Claude Code's plugin system:
21
+ ### 1. Install Claude Code
24
22
 
25
23
  ```bash
26
- # Add the marketplace
27
- claude plugin marketplace add johnmatthewtennant/mcp-voice-hooks
28
-
29
- # Install the plugin
30
- claude plugin install mcp-voice-hooks@mcp-voice-hooks
24
+ npm install -g @anthropic-ai/claude-code
31
25
  ```
32
26
 
33
- That's it! The plugin automatically configures both the MCP server and hooks.
34
-
35
- ### Method 2: Manual Installation (Legacy)
36
-
37
- If you prefer manual installation or need more control:
27
+ ### 2. Install Voice Mode
38
28
 
39
29
  ```bash
40
- # Install hooks and configure MCP server
41
30
  npx mcp-voice-hooks@latest install-hooks
42
31
  claude mcp add voice-hooks npx mcp-voice-hooks@latest
43
32
  ```
@@ -107,23 +96,20 @@ This will configure your project's `.claude/settings.local.json` with the necess
107
96
 
108
97
  ## Uninstallation
109
98
 
110
- ### If installed via Plugin (Method 1)
111
-
112
- ```bash
113
- claude plugin uninstall mcp-voice-hooks@mcp-voice-hooks
114
- ```
115
-
116
- ### If installed manually (Method 2)
99
+ To completely remove MCP Voice Hooks:
117
100
 
118
101
  ```bash
119
102
  # Remove from Claude MCP servers
120
103
  claude mcp remove voice-hooks
104
+ ```
121
105
 
106
+ ```bash
122
107
  # Also remove hooks and settings
123
108
  npx mcp-voice-hooks uninstall
124
109
  ```
125
110
 
126
- Both methods will:
111
+ This will:
112
+
127
113
  - Clean up voice hooks from your project's `.claude/settings.local.json`
128
114
  - Preserve any custom hooks you've added
129
115
 
@@ -156,21 +142,6 @@ claude
156
142
  - For changes to **browser files** (`public/*`), just restart Claude Code
157
143
  - Then restart Claude Code to use the updated code
158
144
 
159
- ### Plugin Directory Structure
160
-
161
- ```
162
- mcp-voice-hooks/
163
- ├── .claude-plugin/
164
- │ └── marketplace.json # Points to ./plugin
165
- ├── .mcp.json # Local dev (no @latest, works with npm link)
166
- └── plugin/ # Plugin distribution
167
- ├── .claude-plugin/
168
- │ └── plugin.json # Plugin manifest
169
- ├── hooks/
170
- │ └── hooks.json # Single source of truth for hooks
171
- └── .mcp.json # Plugin users (with @latest)
172
- ```
173
-
174
145
  ### Configuration
175
146
 
176
147
  #### Port Configuration
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-voice-hooks-dev-plugin",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Development version of mcp-voice-hooks (uses npm link)",
5
5
  "author": {
6
6
  "name": "John Matthew Tennant",
@@ -6,7 +6,9 @@
6
6
  "mcp-voice-hooks",
7
7
  "--skip-hooks"
8
8
  ],
9
- "env": {}
9
+ "env": {
10
+ "MCP_VOICE_HOOKS_PORT": "5110"
11
+ }
10
12
  }
11
13
  }
12
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-voice-hooks",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-voice-hooks-plugin",
3
- "version": "1.0.30",
3
+ "version": "1.0.32",
4
4
  "description": "Real-time voice interaction for Claude Code. Speak naturally while Claude works - interrupt, redirect, or provide continuous feedback without stopping.",
5
5
  "author": {
6
6
  "name": "John Matthew Tennant",
package/plugin/.mcp.json CHANGED
@@ -7,7 +7,9 @@
7
7
  "mcp-voice-hooks",
8
8
  "--skip-hooks"
9
9
  ],
10
- "env": {}
10
+ "env": {
11
+ "MCP_VOICE_HOOKS_PORT": "5112"
12
+ }
11
13
  }
12
14
  }
13
15
  }