@rxreyn3/speak-mcp 0.1.1 → 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. Configure your MCP client to run the published npm package with `npx`.
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": "npx",
25
- "args": ["-y", "--package", "@rxreyn3/speak-mcp", "speak-mcp"],
28
+ "command": "speak-mcp",
26
29
  "env": {
27
30
  "OLLAMA_HOST": "http://localhost:11434",
28
31
  "OLLAMA_MODEL": "qwen2.5:7b-instruct"
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "mcpServers": {
3
3
  "speak": {
4
- "command": "npx",
5
- "args": ["-y", "--package", "@rxreyn3/speak-mcp", "speak-mcp"],
4
+ "command": "speak-mcp",
6
5
  "env": {
7
6
  "OLLAMA_HOST": "http://localhost:11434",
8
7
  "OLLAMA_MODEL": "qwen2.5:7b-instruct"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxreyn3/speak-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local MCP server for Ollama-rewritten macOS speech playback",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",