mcp-voice-hooks 1.0.0 → 1.0.1
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/bin/cli.js +3 -3
- package/mcp-voice-hooks-1.0.1.tgz +0 -0
- package/package.json +2 -2
package/bin/cli.js
CHANGED
@@ -149,10 +149,10 @@ async function configureClaudeCodeSettings() {
|
|
149
149
|
|
150
150
|
// Run the MCP server
|
151
151
|
async function runMCPServer() {
|
152
|
-
const serverPath = path.join(__dirname, '..', '
|
152
|
+
const serverPath = path.join(__dirname, '..', 'dist', 'unified-server.js');
|
153
153
|
|
154
|
-
//
|
155
|
-
const child = spawn('
|
154
|
+
// Run the compiled JavaScript server
|
155
|
+
const child = spawn('node', [serverPath, '--mcp-managed'], {
|
156
156
|
stdio: 'inherit',
|
157
157
|
cwd: path.join(__dirname, '..')
|
158
158
|
});
|
Binary file
|