@coo-quack/calc-mcp 1.6.2 → 1.7.0

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 (3) hide show
  1. package/README.md +5 -5
  2. package/dist/index.js +1544 -2954
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -14,10 +14,10 @@ LLMs hallucinate calculations, can't generate true random numbers, and struggle
14
14
 
15
15
  ```bash
16
16
  # Claude Code
17
- claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp
17
+ claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@latest
18
18
 
19
19
  # Or just run it
20
- npx --prefix /tmp -y @coo-quack/calc-mcp
20
+ npx --prefix /tmp -y @coo-quack/calc-mcp@latest
21
21
  ```
22
22
 
23
23
  > Works with Claude Desktop, VS Code Copilot, Cursor, Windsurf — [setup guides below](#install).
@@ -130,7 +130,7 @@ Ask in natural language — the AI picks the right tool automatically.
130
130
  ### Claude Code
131
131
 
132
132
  ```bash
133
- claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp
133
+ claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@latest
134
134
  ```
135
135
 
136
136
  ### Claude Desktop / Cursor / Windsurf
@@ -149,7 +149,7 @@ Add to your config file:
149
149
  "mcpServers": {
150
150
  "calc-mcp": {
151
151
  "command": "npx",
152
- "args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
152
+ "args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@latest"]
153
153
  }
154
154
  }
155
155
  }
@@ -164,7 +164,7 @@ Add to `.vscode/mcp.json` in your workspace:
164
164
  "servers": {
165
165
  "calc-mcp": {
166
166
  "command": "npx",
167
- "args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
167
+ "args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@latest"]
168
168
  }
169
169
  }
170
170
  }