@coo-quack/calc-mcp 2.0.3 → 2.0.4
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ LLMs hallucinate calculations, can't generate true random numbers, and struggle
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# Claude Code
|
|
21
|
-
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.
|
|
21
|
+
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.4
|
|
22
22
|
|
|
23
23
|
# Or just run it
|
|
24
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.
|
|
24
|
+
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.4
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
> Works with Claude Desktop, VS Code Copilot, Cursor, Windsurf, and any MCP client — [setup guides below](#install).
|
|
@@ -147,7 +147,7 @@ Ask in natural language — your AI assistant selects the appropriate tool.
|
|
|
147
147
|
### Claude Code
|
|
148
148
|
|
|
149
149
|
```bash
|
|
150
|
-
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.
|
|
150
|
+
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.4
|
|
151
151
|
```
|
|
152
152
|
|
|
153
153
|
### Claude Code plugin
|
|
@@ -177,7 +177,7 @@ Add to your config file:
|
|
|
177
177
|
"mcpServers": {
|
|
178
178
|
"calc-mcp": {
|
|
179
179
|
"command": "npx",
|
|
180
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.
|
|
180
|
+
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.4"]
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
}
|
|
@@ -192,7 +192,7 @@ Add to `.vscode/mcp.json` in your workspace:
|
|
|
192
192
|
"servers": {
|
|
193
193
|
"calc-mcp": {
|
|
194
194
|
"command": "npx",
|
|
195
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.
|
|
195
|
+
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.4"]
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
}
|
|
@@ -228,7 +228,7 @@ Available tags:
|
|
|
228
228
|
Calc MCP works with any MCP-compatible client. Run the server via stdio:
|
|
229
229
|
|
|
230
230
|
```bash
|
|
231
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.
|
|
231
|
+
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.4
|
|
232
232
|
```
|
|
233
233
|
|
|
234
234
|
Point your client's MCP config to the command above. The server communicates over **stdio** using the standard [Model Context Protocol](https://modelcontextprotocol.io/).
|
package/package.json
CHANGED