@coo-quack/calc-mcp 1.6.0 → 1.6.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/dist/index.js +2 -3
- package/package.json +1 -1
- package/CHANGELOG.md +0 -104
- package/coo-quack-avatar.jpg +0 -0
- package/docs/.vitepress/config.ts +0 -56
- package/docs/.vitepress/theme/index.ts +0 -4
- package/docs/.vitepress/theme/style.css +0 -21
- package/docs/changelog.md +0 -111
- package/docs/examples.md +0 -419
- package/docs/index.md +0 -101
- package/docs/install.md +0 -163
- package/docs/public/logo.svg +0 -79
- package/docs/tools.md +0 -427
package/docs/examples.md
DELETED
|
@@ -1,419 +0,0 @@
|
|
|
1
|
-
# Examples
|
|
2
|
-
|
|
3
|
-
Ask in natural language — the AI picks the right tool automatically. Here are real examples you can try:
|
|
4
|
-
|
|
5
|
-
## Math & Numbers
|
|
6
|
-
|
|
7
|
-
### Calculations
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
What's 10 + 34 × 341 ÷ 23?
|
|
11
|
-
→ 514.087 (math)
|
|
12
|
-
|
|
13
|
-
Calculate sqrt(144) + 2^8
|
|
14
|
-
→ 268 (math)
|
|
15
|
-
|
|
16
|
-
What's the sum of [10, 20, 30, 40, 50]?
|
|
17
|
-
→ 150 (math)
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
### Statistics
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
Calculate mean and stddev of [1, 2, 3, 4, 5]
|
|
24
|
-
→ { mean: 3, median: 3, stddev: 1.414, min: 1, max: 5 } (math)
|
|
25
|
-
|
|
26
|
-
What's the median of [100, 50, 200, 75, 150]?
|
|
27
|
-
→ 100 (math)
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### Base Conversion
|
|
31
|
-
|
|
32
|
-
```
|
|
33
|
-
Convert 255 to binary
|
|
34
|
-
→ 11111111 (base)
|
|
35
|
-
|
|
36
|
-
Convert FF from hex to decimal
|
|
37
|
-
→ 255 (base)
|
|
38
|
-
|
|
39
|
-
Convert 12 from decimal to base 5
|
|
40
|
-
→ 22 (base)
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
### Card Validation
|
|
44
|
-
|
|
45
|
-
```
|
|
46
|
-
Is 4539578763621486 a valid card number?
|
|
47
|
-
→ true (luhn)
|
|
48
|
-
|
|
49
|
-
Generate check digit for 453957876362148
|
|
50
|
-
→ 6 (luhn)
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## Text & Encoding
|
|
54
|
-
|
|
55
|
-
### Counting
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
How many characters in "Hello, World! 🌍"?
|
|
59
|
-
→ 15 chars, 18 bytes (count)
|
|
60
|
-
|
|
61
|
-
Count words in "The quick brown fox jumps"
|
|
62
|
-
→ 5 words (count)
|
|
63
|
-
|
|
64
|
-
How many lines in this text? (multiline input)
|
|
65
|
-
→ 10 lines (count)
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
### Base64
|
|
69
|
-
|
|
70
|
-
```
|
|
71
|
-
Base64 encode "Hello World"
|
|
72
|
-
→ SGVsbG8gV29ybGQ= (base64)
|
|
73
|
-
|
|
74
|
-
Base64 decode "eyJhbGciOiJIUzI1NiJ9"
|
|
75
|
-
→ {"alg":"HS256"} (base64)
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
### URL Encoding
|
|
79
|
-
|
|
80
|
-
```
|
|
81
|
-
URL-encode "hello world"
|
|
82
|
-
→ hello%20world (encode)
|
|
83
|
-
|
|
84
|
-
URL-decode "hello%20world"
|
|
85
|
-
→ "hello world" (encode)
|
|
86
|
-
|
|
87
|
-
HTML-encode "<script>alert('XSS')</script>"
|
|
88
|
-
→ <script>alert('XSS')</script> (encode)
|
|
89
|
-
|
|
90
|
-
HTML-decode "<script>"
|
|
91
|
-
→ <script> (encode)
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
### Hashing
|
|
95
|
-
|
|
96
|
-
```
|
|
97
|
-
SHA-256 hash of "password123"
|
|
98
|
-
→ ef92b778bafe771e89b862eebf... (hash)
|
|
99
|
-
|
|
100
|
-
MD5 of "hello world"
|
|
101
|
-
→ 5eb63bbbe01eeed093cb22bb8f5acdc3 (hash)
|
|
102
|
-
|
|
103
|
-
CRC32 checksum of "test"
|
|
104
|
-
→ d87f7e0c (hash)
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
## Date & Time
|
|
108
|
-
|
|
109
|
-
### Current Time
|
|
110
|
-
|
|
111
|
-
```
|
|
112
|
-
What time is it in New York?
|
|
113
|
-
→ 2026-02-10T19:00:00-05:00 (datetime)
|
|
114
|
-
|
|
115
|
-
What time is it in Tokyo?
|
|
116
|
-
→ 2026-02-11T09:00:00+09:00 (datetime)
|
|
117
|
-
|
|
118
|
-
What's the current UNIX timestamp?
|
|
119
|
-
→ 1707638400 (datetime)
|
|
120
|
-
```
|
|
121
|
-
|
|
122
|
-
### Date Arithmetic
|
|
123
|
-
|
|
124
|
-
```
|
|
125
|
-
What's 100 days after 2026-02-11?
|
|
126
|
-
→ 2026-05-22 (date)
|
|
127
|
-
|
|
128
|
-
What's 30 days before 2026-03-01?
|
|
129
|
-
→ 2026-01-30 (date)
|
|
130
|
-
|
|
131
|
-
Add 6 months to 2026-01-15
|
|
132
|
-
→ 2026-07-15 (date)
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
### Date Differences
|
|
136
|
-
|
|
137
|
-
```
|
|
138
|
-
How many days between 2026-01-01 and 2026-12-31?
|
|
139
|
-
→ 364 days (date)
|
|
140
|
-
|
|
141
|
-
Difference in months between 2025-01-01 and 2026-01-01
|
|
142
|
-
→ 12 months (date)
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### Weekdays
|
|
146
|
-
|
|
147
|
-
```
|
|
148
|
-
What day of the week is 2026-02-11?
|
|
149
|
-
→ Wednesday (水曜日) (date)
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
### Cron Expressions
|
|
153
|
-
|
|
154
|
-
```
|
|
155
|
-
When does "30 9 * * 1-5" run?
|
|
156
|
-
→ Mon–Fri at 9:30 (cron_parse)
|
|
157
|
-
|
|
158
|
-
Parse "0 0 1 * *"
|
|
159
|
-
→ Monthly on the 1st at midnight (cron_parse)
|
|
160
|
-
|
|
161
|
-
Next 5 runs of "*/15 * * * *"
|
|
162
|
-
→ Every 15 minutes: 10:00, 10:15, 10:30... (cron_parse)
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
## Generation
|
|
166
|
-
|
|
167
|
-
### UUIDs
|
|
168
|
-
|
|
169
|
-
```
|
|
170
|
-
Generate a UUID v4
|
|
171
|
-
→ 550e8400-e29b-41d4-a716-446655440000 (random)
|
|
172
|
-
|
|
173
|
-
Generate a UUID v7 (time-ordered)
|
|
174
|
-
→ 019c4b54-aad2-7e52-8a3b-... (random)
|
|
175
|
-
|
|
176
|
-
Generate a ULID
|
|
177
|
-
→ 01HN8B6ZK9PQRSTVWXY0123456 (random)
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
### Passwords
|
|
181
|
-
|
|
182
|
-
```
|
|
183
|
-
Generate a 20-character password
|
|
184
|
-
→ hT9jZDojX6sHRJt8vaKS (random)
|
|
185
|
-
|
|
186
|
-
Generate a readable password (no ambiguous chars)
|
|
187
|
-
→ rTbPkWnF8sHuDxYz (random)
|
|
188
|
-
|
|
189
|
-
Generate a 16-char password with only letters and numbers
|
|
190
|
-
→ aB3dE5fG7hJ9kL2m (random)
|
|
191
|
-
|
|
192
|
-
Generate a password without symbols
|
|
193
|
-
→ xYz4AbC8DeFgHiJk (random)
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
### Random Numbers
|
|
197
|
-
|
|
198
|
-
```
|
|
199
|
-
Random number between 1 and 100
|
|
200
|
-
→ 42 (random)
|
|
201
|
-
|
|
202
|
-
Random number between 1 and 6 (dice roll)
|
|
203
|
-
→ 4 (random)
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
### Shuffle
|
|
207
|
-
|
|
208
|
-
```
|
|
209
|
-
Shuffle ["Alice", "Bob", "Charlie"]
|
|
210
|
-
→ ["Charlie", "Alice", "Bob"] (random)
|
|
211
|
-
|
|
212
|
-
Randomize order: ["A", "B", "C", "D", "E"]
|
|
213
|
-
→ ["D", "A", "E", "B", "C"] (random)
|
|
214
|
-
```
|
|
215
|
-
|
|
216
|
-
## Conversion
|
|
217
|
-
|
|
218
|
-
### Length
|
|
219
|
-
|
|
220
|
-
```
|
|
221
|
-
100 miles in kilometers?
|
|
222
|
-
→ 160.93 km (convert)
|
|
223
|
-
|
|
224
|
-
5 feet in meters?
|
|
225
|
-
→ 1.524 m (convert)
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
### Temperature
|
|
229
|
-
|
|
230
|
-
```
|
|
231
|
-
72°F in Celsius?
|
|
232
|
-
→ 22.22°C (convert)
|
|
233
|
-
|
|
234
|
-
100°C in Fahrenheit?
|
|
235
|
-
→ 212°F (convert)
|
|
236
|
-
|
|
237
|
-
300 Kelvin in Celsius?
|
|
238
|
-
→ 26.85°C (convert)
|
|
239
|
-
```
|
|
240
|
-
|
|
241
|
-
### Weight
|
|
242
|
-
|
|
243
|
-
```
|
|
244
|
-
10 pounds in kilograms?
|
|
245
|
-
→ 4.536 kg (convert)
|
|
246
|
-
|
|
247
|
-
500 grams in ounces?
|
|
248
|
-
→ 17.637 oz (convert)
|
|
249
|
-
```
|
|
250
|
-
|
|
251
|
-
### Area (including Japanese units)
|
|
252
|
-
|
|
253
|
-
```
|
|
254
|
-
10 tsubo in square meters?
|
|
255
|
-
→ 33.06 m² (convert)
|
|
256
|
-
|
|
257
|
-
100 m² in tatami?
|
|
258
|
-
→ 60.5 tatami (convert)
|
|
259
|
-
|
|
260
|
-
1 acre in square meters?
|
|
261
|
-
→ 4046.86 m² (convert)
|
|
262
|
-
```
|
|
263
|
-
|
|
264
|
-
### Data
|
|
265
|
-
|
|
266
|
-
```
|
|
267
|
-
5 GB in megabytes?
|
|
268
|
-
→ 5120 MB (convert)
|
|
269
|
-
|
|
270
|
-
1000 kilobytes in bits?
|
|
271
|
-
→ 8192000 bits (convert)
|
|
272
|
-
```
|
|
273
|
-
|
|
274
|
-
### Time
|
|
275
|
-
|
|
276
|
-
```
|
|
277
|
-
3600 seconds in hours?
|
|
278
|
-
→ 1 hour (convert)
|
|
279
|
-
|
|
280
|
-
2 weeks in days?
|
|
281
|
-
→ 14 days (convert)
|
|
282
|
-
|
|
283
|
-
1000000 milliseconds in minutes?
|
|
284
|
-
→ 16.667 minutes (convert)
|
|
285
|
-
```
|
|
286
|
-
|
|
287
|
-
## Analysis & Parsing
|
|
288
|
-
|
|
289
|
-
### Regular Expressions
|
|
290
|
-
|
|
291
|
-
```
|
|
292
|
-
Extract numbers from "abc123def456"
|
|
293
|
-
→ ["123", "456"] (regex)
|
|
294
|
-
|
|
295
|
-
Does "hello@example.com" match an email pattern?
|
|
296
|
-
→ true (regex)
|
|
297
|
-
|
|
298
|
-
Replace all spaces with dashes in "hello world"
|
|
299
|
-
→ "hello-world" (regex)
|
|
300
|
-
```
|
|
301
|
-
|
|
302
|
-
### Text Diff
|
|
303
|
-
|
|
304
|
-
```
|
|
305
|
-
Edit distance: "kitten" → "sitting"
|
|
306
|
-
→ 3 (diff)
|
|
307
|
-
|
|
308
|
-
Line diff between two code snippets
|
|
309
|
-
→ - old line
|
|
310
|
-
→ + new line
|
|
311
|
-
→ unchanged line
|
|
312
|
-
(diff)
|
|
313
|
-
```
|
|
314
|
-
|
|
315
|
-
### IP Addresses
|
|
316
|
-
|
|
317
|
-
```
|
|
318
|
-
IP range of 192.168.1.0/24?
|
|
319
|
-
→ 192.168.1.1 – .254 (254 hosts) (ip)
|
|
320
|
-
|
|
321
|
-
Is 192.168.1.50 in 192.168.1.0/24?
|
|
322
|
-
→ true (ip)
|
|
323
|
-
|
|
324
|
-
Parse IPv6 address 2001:db8::1
|
|
325
|
-
→ { version: 6, address: "2001:0db8:0000:..." } (ip)
|
|
326
|
-
```
|
|
327
|
-
|
|
328
|
-
### Colors
|
|
329
|
-
|
|
330
|
-
```
|
|
331
|
-
Convert #FF5733 to RGB
|
|
332
|
-
→ rgb(255, 87, 51) (color)
|
|
333
|
-
|
|
334
|
-
Convert rgb(100, 200, 50) to HSL
|
|
335
|
-
→ hsl(100, 60%, 49%) (color)
|
|
336
|
-
|
|
337
|
-
Convert hsl(120, 100%, 50%) to HEX
|
|
338
|
-
→ #00FF00 (color)
|
|
339
|
-
```
|
|
340
|
-
|
|
341
|
-
### Semver
|
|
342
|
-
|
|
343
|
-
```
|
|
344
|
-
Does 1.5.3 satisfy ^1.0.0?
|
|
345
|
-
→ true (semver)
|
|
346
|
-
|
|
347
|
-
Compare 2.0.0 and 1.9.9
|
|
348
|
-
→ 2.0.0 is greater (semver)
|
|
349
|
-
|
|
350
|
-
Is "1.2.3-beta.1" a valid semver?
|
|
351
|
-
→ true (semver)
|
|
352
|
-
```
|
|
353
|
-
|
|
354
|
-
## Decode & Parse
|
|
355
|
-
|
|
356
|
-
### JSON Validation
|
|
357
|
-
|
|
358
|
-
```
|
|
359
|
-
Is '{"name":"test"}' valid JSON?
|
|
360
|
-
→ valid, object, keys: ["name"] (json_validate)
|
|
361
|
-
|
|
362
|
-
Validate CSV with 3 columns
|
|
363
|
-
→ valid, 10 rows, 3 columns (json_validate)
|
|
364
|
-
|
|
365
|
-
Is this valid XML? (XML input)
|
|
366
|
-
→ valid (json_validate)
|
|
367
|
-
```
|
|
368
|
-
|
|
369
|
-
### JWT Decoding
|
|
370
|
-
|
|
371
|
-
```
|
|
372
|
-
Decode this JWT: eyJhbGci...
|
|
373
|
-
→ {
|
|
374
|
-
header: { alg: "HS256", typ: "JWT" },
|
|
375
|
-
payload: { sub: "1234567890", name: "John Doe" }
|
|
376
|
-
}
|
|
377
|
-
(jwt_decode)
|
|
378
|
-
```
|
|
379
|
-
|
|
380
|
-
### URL Parsing
|
|
381
|
-
|
|
382
|
-
```
|
|
383
|
-
Parse https://example.com/search?q=hello&lang=en
|
|
384
|
-
→ {
|
|
385
|
-
host: "example.com",
|
|
386
|
-
pathname: "/search",
|
|
387
|
-
searchParams: { q: "hello", lang: "en" }
|
|
388
|
-
}
|
|
389
|
-
(url_parse)
|
|
390
|
-
|
|
391
|
-
Extract query params from https://api.github.com/search?q=mcp&sort=stars
|
|
392
|
-
→ { q: "mcp", sort: "stars" } (url_parse)
|
|
393
|
-
```
|
|
394
|
-
|
|
395
|
-
### Unicode Info
|
|
396
|
-
|
|
397
|
-
```
|
|
398
|
-
Unicode info for "€"
|
|
399
|
-
→ U+20AC, Currency Symbols (char_info)
|
|
400
|
-
|
|
401
|
-
What's the code point for "🌍"?
|
|
402
|
-
→ U+1F30D, Miscellaneous Symbols and Pictographs (char_info)
|
|
403
|
-
|
|
404
|
-
Character info for "あ"
|
|
405
|
-
→ U+3042, Hiragana (char_info)
|
|
406
|
-
```
|
|
407
|
-
|
|
408
|
-
---
|
|
409
|
-
|
|
410
|
-
## Tips for Natural Language Queries
|
|
411
|
-
|
|
412
|
-
The AI automatically selects the right tool based on your question. For best results:
|
|
413
|
-
|
|
414
|
-
1. **Be specific** — "Convert 100°F to Celsius" is better than "temperature conversion"
|
|
415
|
-
2. **Include units** — "5 miles in km" is clearer than "5 miles"
|
|
416
|
-
3. **Use examples** — "Extract numbers from 'abc123'" shows what you want
|
|
417
|
-
4. **Ask naturally** — The AI understands conversational queries
|
|
418
|
-
|
|
419
|
-
Try asking in your own words — the AI will figure it out! 🚀
|
package/docs/index.md
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
layout: home
|
|
3
|
-
|
|
4
|
-
hero:
|
|
5
|
-
name: Calc MCP
|
|
6
|
-
text: 21 tools for things AI is bad at
|
|
7
|
-
tagline: Deterministic math, cryptographic randomness, accurate date arithmetic, encoding, hashing, and more
|
|
8
|
-
actions:
|
|
9
|
-
- theme: brand
|
|
10
|
-
text: Get Started
|
|
11
|
-
link: /install
|
|
12
|
-
- theme: alt
|
|
13
|
-
text: View Tools
|
|
14
|
-
link: /tools
|
|
15
|
-
- theme: alt
|
|
16
|
-
text: GitHub
|
|
17
|
-
link: https://github.com/coo-quack/calc-mcp
|
|
18
|
-
|
|
19
|
-
features:
|
|
20
|
-
- icon: 🧮
|
|
21
|
-
title: Precise Math
|
|
22
|
-
details: No more hallucinated calculations. Evaluate complex expressions with mathjs, compute statistics, all deterministic.
|
|
23
|
-
- icon: 🎲
|
|
24
|
-
title: True Randomness
|
|
25
|
-
details: Cryptographically secure UUIDs, ULIDs, passwords, and shuffling. No fake random numbers from AI.
|
|
26
|
-
- icon: 📅
|
|
27
|
-
title: Accurate Dates
|
|
28
|
-
details: Timezone conversion, date arithmetic, cron parsing. No more guessing what day it is 100 days from now.
|
|
29
|
-
- icon: 🔐
|
|
30
|
-
title: Hashing & Encoding
|
|
31
|
-
details: SHA-256, Base64, URL encoding, JWT decoding. Real cryptographic operations, not hallucinated hashes.
|
|
32
|
-
- icon: 🌈
|
|
33
|
-
title: Conversions
|
|
34
|
-
details: 8 categories, 72 units. Length, weight, temperature, area, volume, speed, data, time. Including Japanese units (tsubo, tatami).
|
|
35
|
-
- icon: 🔍
|
|
36
|
-
title: Parsing & Validation
|
|
37
|
-
details: IP addresses, URLs, JSON, semver, Luhn checksums. Deterministic validation and parsing.
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
## Why Calc MCP?
|
|
41
|
-
|
|
42
|
-
LLMs are incredible at natural language understanding, but terrible at things that require **precision**.
|
|
43
|
-
|
|
44
|
-
| AI alone | With calc-mcp |
|
|
45
|
-
|----------|---------------|
|
|
46
|
-
| "10 + 34 × 341 ÷ 23 = 507.8" ❌ | `514.087` ✅ (math) |
|
|
47
|
-
| "Here's a UUID: 550e8400-..." 🤷 fake | Cryptographically random UUID v4/v7 ✅ (random) |
|
|
48
|
-
| "100 days from now is..." 🤔 guess | `2026-05-22` ✅ (date) |
|
|
49
|
-
| "SHA-256 of password123 is..." 💀 hallucinated | `ef92b778bafe...` ✅ (hash) |
|
|
50
|
-
|
|
51
|
-
Calc MCP gives your AI assistant the tools to **delegate** these tasks to deterministic, tested code.
|
|
52
|
-
|
|
53
|
-
## Quick Start
|
|
54
|
-
|
|
55
|
-
```bash
|
|
56
|
-
# Claude Code
|
|
57
|
-
claude mcp add -s user calc-mcp -- npx -y @coo-quack/calc-mcp
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
Works with **Claude Desktop**, **VS Code Copilot**, **Cursor**, **Windsurf** — see [installation guides](/install).
|
|
61
|
-
|
|
62
|
-
## Usage
|
|
63
|
-
|
|
64
|
-
Just ask in natural language. The AI picks the right tool automatically:
|
|
65
|
-
|
|
66
|
-
```
|
|
67
|
-
You: What's 10 + 34 × 341 ÷ 23?
|
|
68
|
-
AI: [uses math tool] → 514.087
|
|
69
|
-
|
|
70
|
-
You: Generate a UUID v7
|
|
71
|
-
AI: [uses random tool] → 019c4b54-aad2-7e52-8a3b-...
|
|
72
|
-
|
|
73
|
-
You: What's 100 days after 2026-02-11?
|
|
74
|
-
AI: [uses date tool] → 2026-05-22
|
|
75
|
-
|
|
76
|
-
You: SHA-256 hash of "password123"
|
|
77
|
-
AI: [uses hash tool] → ef92b778bafe771e89b862eebf...
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
See more [examples →](/examples)
|
|
81
|
-
|
|
82
|
-
## All 21 Tools
|
|
83
|
-
|
|
84
|
-
| Category | Tools |
|
|
85
|
-
|----------|-------|
|
|
86
|
-
| **Math** | math, count, convert, base |
|
|
87
|
-
| **Random** | random (UUID, ULID, password, number, shuffle) |
|
|
88
|
-
| **Dates** | datetime, date, cron_parse |
|
|
89
|
-
| **Text** | base64, encode, hash, regex, diff, char_info |
|
|
90
|
-
| **Validation** | json_validate, luhn, semver |
|
|
91
|
-
| **Parsing** | ip, color, jwt_decode, url_parse |
|
|
92
|
-
|
|
93
|
-
[View all tools →](/tools)
|
|
94
|
-
|
|
95
|
-
## Features
|
|
96
|
-
|
|
97
|
-
- ✅ **21 MCP tools** covering calculations, randomness, dates, encoding, parsing
|
|
98
|
-
- ✅ **Tested** — 194 tests, 280 assertions, 92%+ coverage
|
|
99
|
-
- ✅ **Fast** — Pure JavaScript/TypeScript, no heavy dependencies
|
|
100
|
-
- ✅ **Cross-platform** — Works with Claude Desktop, VS Code, Cursor, Windsurf
|
|
101
|
-
- ✅ **MIT Licensed** — Free to use, modify, distribute
|
package/docs/install.md
DELETED
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
# Installation
|
|
2
|
-
|
|
3
|
-
Calc MCP works with any MCP-compatible client. Below are setup guides for popular AI assistants.
|
|
4
|
-
|
|
5
|
-
## Claude Code
|
|
6
|
-
|
|
7
|
-
The fastest way to add Calc MCP to Claude Code:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
claude mcp add -s user calc-mcp -- npx --prefix /tmp -y @coo-quack/calc-mcp
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
This adds the server to your user config (`~/.config/openclaw/config.yml`).
|
|
14
|
-
|
|
15
|
-
To verify it's working:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
claude mcp list
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
You should see `calc-mcp` in the list.
|
|
22
|
-
|
|
23
|
-
## Claude Desktop
|
|
24
|
-
|
|
25
|
-
Add to your Claude Desktop config file:
|
|
26
|
-
|
|
27
|
-
**macOS:**
|
|
28
|
-
```bash
|
|
29
|
-
~/Library/Application Support/Claude/claude_desktop_config.json
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
**Windows:**
|
|
33
|
-
```bash
|
|
34
|
-
%APPDATA%\Claude\claude_desktop_config.json
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
**Config:**
|
|
38
|
-
```json
|
|
39
|
-
{
|
|
40
|
-
"mcpServers": {
|
|
41
|
-
"calc-mcp": {
|
|
42
|
-
"command": "npx",
|
|
43
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
After editing, restart Claude Desktop. You should see "MCP" in the bottom-right corner with the 21 tools available.
|
|
50
|
-
|
|
51
|
-
## Cursor
|
|
52
|
-
|
|
53
|
-
Add to `~/.cursor/mcp.json`:
|
|
54
|
-
|
|
55
|
-
```json
|
|
56
|
-
{
|
|
57
|
-
"mcpServers": {
|
|
58
|
-
"calc-mcp": {
|
|
59
|
-
"command": "npx",
|
|
60
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
Restart Cursor after adding the config.
|
|
67
|
-
|
|
68
|
-
## Windsurf
|
|
69
|
-
|
|
70
|
-
Add to `~/.codeium/windsurf/mcp_config.json`:
|
|
71
|
-
|
|
72
|
-
```json
|
|
73
|
-
{
|
|
74
|
-
"mcpServers": {
|
|
75
|
-
"calc-mcp": {
|
|
76
|
-
"command": "npx",
|
|
77
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
Restart Windsurf after adding the config.
|
|
84
|
-
|
|
85
|
-
## VS Code (GitHub Copilot)
|
|
86
|
-
|
|
87
|
-
For workspace-specific setup, add `.vscode/mcp.json` in your project:
|
|
88
|
-
|
|
89
|
-
```json
|
|
90
|
-
{
|
|
91
|
-
"servers": {
|
|
92
|
-
"calc-mcp": {
|
|
93
|
-
"command": "npx",
|
|
94
|
-
"args": ["--prefix", "/tmp", "-y", "@coo-quack/calc-mcp"]
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
Reload VS Code after creating the file.
|
|
101
|
-
|
|
102
|
-
## Direct Usage
|
|
103
|
-
|
|
104
|
-
You can also run the server directly for testing:
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
Or install globally:
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
npm install -g @coo-quack/calc-mcp
|
|
114
|
-
calc-mcp
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
## Troubleshooting
|
|
118
|
-
|
|
119
|
-
### "npx: command not found"
|
|
120
|
-
|
|
121
|
-
Make sure Node.js (v18+) is installed:
|
|
122
|
-
|
|
123
|
-
```bash
|
|
124
|
-
node --version
|
|
125
|
-
npm --version
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
Install from [nodejs.org](https://nodejs.org/) if needed.
|
|
129
|
-
|
|
130
|
-
### Tools not showing up
|
|
131
|
-
|
|
132
|
-
1. **Restart the app** after editing the config file
|
|
133
|
-
2. **Check the config path** — make sure you edited the right file
|
|
134
|
-
3. **Validate JSON** — use a JSON validator to check for syntax errors
|
|
135
|
-
4. **Check logs** — Claude Desktop and other apps may have logs showing connection errors
|
|
136
|
-
|
|
137
|
-
### "calc-mcp: command not found" inside a Node.js project
|
|
138
|
-
|
|
139
|
-
If you run `npx` inside a directory that contains `node_modules`, npx may fail with:
|
|
140
|
-
|
|
141
|
-
```
|
|
142
|
-
sh: calc-mcp: command not found
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
This happens because npx resolves the scoped package locally but fails to link the binary correctly. All the examples on this page already include the fix (`--prefix /tmp`), which forces npx to use a separate directory for package resolution:
|
|
146
|
-
|
|
147
|
-
```bash
|
|
148
|
-
npx --prefix /tmp -y @coo-quack/calc-mcp
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Version info
|
|
152
|
-
|
|
153
|
-
To check the installed version:
|
|
154
|
-
|
|
155
|
-
```bash
|
|
156
|
-
npx --prefix /tmp @coo-quack/calc-mcp --version
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
## Next Steps
|
|
160
|
-
|
|
161
|
-
- [View all tools →](/tools)
|
|
162
|
-
- [See examples →](/examples)
|
|
163
|
-
- [Read the changelog →](/changelog)
|