voice-mcp-server 0.1.10 → 0.1.12

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 +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -96,9 +96,14 @@ Grants the AI meta-awareness over its own hardware and software stack. If you as
96
96
  The easiest way to get started is to install the server globally via NPM. This will automatically handle the creation of the Python virtual environment and installation of ML dependencies on its first run.
97
97
 
98
98
  ### 1. Prerequisites
99
+ - **macOS** (Apple Silicon M1/M2/M3/M4 chip required)
99
100
  - **Node.js** (v18+)
100
101
  - **Python** (3.10+)
101
- - **macOS** (Apple Silicon M1/M2/M3/M4 chip required)
102
+
103
+ You must also have the required system-level audio libraries installed via [Homebrew](https://brew.sh/):
104
+ ```bash
105
+ brew install portaudio espeak-ng
106
+ ```
102
107
 
103
108
  ### 2. Global Installation
104
109
  Run the following command in your terminal:
@@ -119,7 +124,7 @@ gemini mcp add voice-mcp-server --scope user npx -y voice-mcp-server
119
124
  Simply use `npx` and `-y` as the command in your configuration.
120
125
 
121
126
  > [!NOTE]
122
- > **First Run Performance:** The very first time you invoke the voice tool, it will take a few minutes to initialize the Python environment and download the heavy ML weights (~4GB). **The tools will not be available until this background setup completes.** You can monitor progress in your terminal logs.
127
+ > **First Run Performance:** The very first time you invoke the voice tool, it will take a few minutes to initialize the Python environment and download the heavy ML weights (~4GB). **The tools will not be available until this background setup completes.** You can monitor progress in your terminal logs. *Depending on your AI client, you may need to restart the application/CLI for the tools to appear after setup.*
123
128
 
124
129
  ### 4. Uninstalling
125
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voice-mcp-server",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
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",