@rxreyn3/speak-mcp 0.1.0 → 0.1.2
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
|
@@ -11,7 +11,11 @@ A local MCP server that rewrites text with Ollama for natural speech and reads i
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
|
-
You do not need to clone this repository to use Speak MCP.
|
|
14
|
+
You do not need to clone this repository to use Speak MCP. Install the published npm package globally, then configure your MCP client to run the `speak-mcp` binary.
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g @rxreyn3/speak-mcp
|
|
18
|
+
```
|
|
15
19
|
|
|
16
20
|
## Claude Desktop configuration
|
|
17
21
|
|
|
@@ -21,8 +25,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` and add t
|
|
|
21
25
|
{
|
|
22
26
|
"mcpServers": {
|
|
23
27
|
"speak": {
|
|
24
|
-
"command": "
|
|
25
|
-
"args": ["-y", "@rxreyn3/speak-mcp"],
|
|
28
|
+
"command": "speak-mcp",
|
|
26
29
|
"env": {
|
|
27
30
|
"OLLAMA_HOST": "http://localhost:11434",
|
|
28
31
|
"OLLAMA_MODEL": "qwen2.5:7b-instruct"
|