@coo-quack/calc-mcp 2.0.2 → 2.0.3
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 +21 -6
- package/dist/index.js +177 -152
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -18,14 +18,16 @@ 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@
|
|
21
|
+
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.3
|
|
22
22
|
|
|
23
23
|
# Or just run it
|
|
24
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp@
|
|
24
|
+
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.3
|
|
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
|
+
|
|
29
31
|
---
|
|
30
32
|
|
|
31
33
|
## Why?
|
|
@@ -140,11 +142,24 @@ Ask in natural language — your AI assistant selects the appropriate tool.
|
|
|
140
142
|
|
|
141
143
|
## Install
|
|
142
144
|
|
|
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
|
+
|
|
143
147
|
### Claude Code
|
|
144
148
|
|
|
145
149
|
```bash
|
|
146
|
-
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@
|
|
150
|
+
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.3
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
### Claude Code plugin
|
|
154
|
+
|
|
155
|
+
Also available as a plugin from the [coo-quack marketplace](https://github.com/coo-quack/claude-code-marketplace):
|
|
156
|
+
|
|
147
157
|
```
|
|
158
|
+
/plugin marketplace add coo-quack/claude-code-marketplace
|
|
159
|
+
/plugin install calc-mcp@coo-quack
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
See the [installation guide](https://coo-quack.github.io/calc-mcp/install) for details.
|
|
148
163
|
|
|
149
164
|
### Claude Desktop / Cursor / Windsurf
|
|
150
165
|
|
|
@@ -162,7 +177,7 @@ Add to your config file:
|
|
|
162
177
|
"mcpServers": {
|
|
163
178
|
"calc-mcp": {
|
|
164
179
|
"command": "npx",
|
|
165
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@
|
|
180
|
+
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.3"]
|
|
166
181
|
}
|
|
167
182
|
}
|
|
168
183
|
}
|
|
@@ -177,7 +192,7 @@ Add to `.vscode/mcp.json` in your workspace:
|
|
|
177
192
|
"servers": {
|
|
178
193
|
"calc-mcp": {
|
|
179
194
|
"command": "npx",
|
|
180
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@
|
|
195
|
+
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp@2.0.3"]
|
|
181
196
|
}
|
|
182
197
|
}
|
|
183
198
|
}
|
|
@@ -213,7 +228,7 @@ Available tags:
|
|
|
213
228
|
Calc MCP works with any MCP-compatible client. Run the server via stdio:
|
|
214
229
|
|
|
215
230
|
```bash
|
|
216
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp@
|
|
231
|
+
npx --prefix /tmp -y @coo-quack/calc-mcp@2.0.3
|
|
217
232
|
```
|
|
218
233
|
|
|
219
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/).
|