voice-mcp-server 0.1.23 → 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 +15 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -129,7 +129,21 @@ gemini mcp add voice-mcp-server --scope user voice-mcp-server
129
129
  claude mcp add voice-mcp-server --scope user voice-mcp-server
130
130
  ```
131
131
 
132
- **For Cursor / Claude Desktop:**
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:**
133
147
  Simply use `voice-mcp-server` as the command in your configuration.
134
148
 
135
149
  > [!NOTE]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voice-mcp-server",
3
- "version": "0.1.23",
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",