@coo-quack/calc-mcp 2.0.3 → 2.0.5
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 -10
- package/dist/index.js +117 -116
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -18,16 +18,14 @@ 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
|
|
21
|
+
claude mcp add -s user calc-mcp -- npx -y @coo-quack/calc-mcp@2.0.5
|
|
22
22
|
|
|
23
23
|
# Or just run it
|
|
24
|
-
npx
|
|
24
|
+
npx -y @coo-quack/calc-mcp@2.0.5
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
> Works with Claude Desktop, VS Code Copilot, Cursor, Windsurf, and any MCP client — [setup guides below](#install).
|
|
28
28
|
|
|
29
|
-
> **Windows note**: These examples use `/tmp` as the npx prefix — on Windows, replace it with a writable directory such as `C:\Temp`.
|
|
30
|
-
|
|
31
29
|
---
|
|
32
30
|
|
|
33
31
|
## Why?
|
|
@@ -142,12 +140,10 @@ Ask in natural language — your AI assistant selects the appropriate tool.
|
|
|
142
140
|
|
|
143
141
|
## Install
|
|
144
142
|
|
|
145
|
-
> **Windows note**: The examples below use `/tmp` as the npx prefix. On Windows, replace it with a writable directory such as `C:\Temp`.
|
|
146
|
-
|
|
147
143
|
### Claude Code
|
|
148
144
|
|
|
149
145
|
```bash
|
|
150
|
-
claude mcp add -s user calc-mcp -- npx
|
|
146
|
+
claude mcp add -s user calc-mcp -- npx -y @coo-quack/calc-mcp@2.0.5
|
|
151
147
|
```
|
|
152
148
|
|
|
153
149
|
### Claude Code plugin
|
|
@@ -177,7 +173,7 @@ Add to your config file:
|
|
|
177
173
|
"mcpServers": {
|
|
178
174
|
"calc-mcp": {
|
|
179
175
|
"command": "npx",
|
|
180
|
-
"args": ["
|
|
176
|
+
"args": ["-y", "@coo-quack/calc-mcp@2.0.5"]
|
|
181
177
|
}
|
|
182
178
|
}
|
|
183
179
|
}
|
|
@@ -192,7 +188,7 @@ Add to `.vscode/mcp.json` in your workspace:
|
|
|
192
188
|
"servers": {
|
|
193
189
|
"calc-mcp": {
|
|
194
190
|
"command": "npx",
|
|
195
|
-
"args": ["
|
|
191
|
+
"args": ["-y", "@coo-quack/calc-mcp@2.0.5"]
|
|
196
192
|
}
|
|
197
193
|
}
|
|
198
194
|
}
|
|
@@ -228,7 +224,7 @@ Available tags:
|
|
|
228
224
|
Calc MCP works with any MCP-compatible client. Run the server via stdio:
|
|
229
225
|
|
|
230
226
|
```bash
|
|
231
|
-
npx
|
|
227
|
+
npx -y @coo-quack/calc-mcp@2.0.5
|
|
232
228
|
```
|
|
233
229
|
|
|
234
230
|
Point your client's MCP config to the command above. The server communicates over **stdio** using the standard [Model Context Protocol](https://modelcontextprotocol.io/).
|