voice-mcp-server 0.1.22 → 0.1.24

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 +20 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -124,7 +124,26 @@ You can now add the server to your favorite client. Using the globally installed
124
124
  gemini mcp add voice-mcp-server --scope user voice-mcp-server
125
125
  ```
126
126
 
127
- **For Cursor / Claude Desktop:**
127
+ **For Claude Code:**
128
+ ```bash
129
+ claude mcp add voice-mcp-server --scope user voice-mcp-server
130
+ ```
131
+
132
+ **For Claude Desktop:**
133
+ Add the following to your `claude_desktop_config.json` (located at `~/Library/Application Support/Claude/claude_desktop_config.json`):
134
+
135
+ ```json
136
+ {
137
+ "mcpServers": {
138
+ "voice-mcp-server": {
139
+ "command": "voice-mcp-server",
140
+ "args": []
141
+ }
142
+ }
143
+ }
144
+ ```
145
+
146
+ **For Cursor:**
128
147
  Simply use `voice-mcp-server` as the command in your configuration.
129
148
 
130
149
  > [!NOTE]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voice-mcp-server",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "An MCP server to allow LLMs to speak and listen via bidirectional voice loops",
5
5
  "main": "build/index.js",
6
6
  "type": "module",