@allratestoday/mcp-server 0.3.2 → 0.3.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 +10 -17
- package/dist/index.js +0 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ After installation, your assistant can answer questions like:
|
|
|
62
62
|
|
|
63
63
|
## Get an API key (required)
|
|
64
64
|
|
|
65
|
-
The server **will not start** without a valid `ALLRATES_API_KEY`.
|
|
65
|
+
The server **will not start** without a valid `ALLRATES_API_KEY`. A free key is enough for development and personal use — **no credit card required**.
|
|
66
66
|
|
|
67
67
|
1. Register at [allratestoday.com/register](https://allratestoday.com/register) — 30 seconds
|
|
68
68
|
2. Verify your email
|
|
@@ -334,16 +334,9 @@ You set these in your MCP client's config (in the `env` block) — not in your s
|
|
|
334
334
|
|
|
335
335
|
---
|
|
336
336
|
|
|
337
|
-
## Plans
|
|
337
|
+
## Plans
|
|
338
338
|
|
|
339
|
-
|
|
340
|
-
|---|---|---|
|
|
341
|
-
| **Free** | 300 | €0 |
|
|
342
|
-
| **Small** | 5,000 | €4.99/mo |
|
|
343
|
-
| **Medium** | 10,000 | €9.99/mo |
|
|
344
|
-
| **Large** | 100,000 | €49.99/mo |
|
|
345
|
-
|
|
346
|
-
Full pricing at [allratestoday.com/pricing](https://allratestoday.com/pricing). All plans include the same currency coverage and historical depth — only the request quotas differ.
|
|
339
|
+
A free tier and paid plans are available. See [allratestoday.com/pricing](https://allratestoday.com/pricing) for current quotas. All plans include the same currency coverage and historical depth — only the request quotas differ.
|
|
347
340
|
|
|
348
341
|
---
|
|
349
342
|
|
|
@@ -353,7 +346,7 @@ Full pricing at [allratestoday.com/pricing](https://allratestoday.com/pricing).
|
|
|
353
346
|
|---|---|---|
|
|
354
347
|
| Client shows "MCP server failed to start" or red dot | `ALLRATES_API_KEY` not set or invalid | Verify the key in your client config; check it matches the dashboard |
|
|
355
348
|
| Tools show but every call returns "Invalid AllRatesToday API key" | Key is malformed (missing prefix, truncated, or revoked) | Copy a fresh key from the dashboard |
|
|
356
|
-
| Tools return "AllRatesToday API quota exceeded" | Free-tier
|
|
349
|
+
| Tools return "AllRatesToday API quota exceeded" | Free-tier monthly limit hit | Wait until next month or upgrade plan |
|
|
357
350
|
| Historical tool returns "Bad request" | Invalid period or unknown currency code | Period must be `1d`/`7d`/`30d`/`1y`; codes must be 3 letters |
|
|
358
351
|
| Server starts but tools never appear in client | Client didn't reload after config change | Fully quit (not just close) and reopen the client |
|
|
359
352
|
| `npx` runs but hangs forever | The server is waiting for an MCP client to connect — this is normal when run from a shell | Don't run from a shell; let your MCP client launch it |
|
|
@@ -389,7 +382,7 @@ The LLM will surface these messages in its response, so a user prompt that hits
|
|
|
389
382
|
## FAQ
|
|
390
383
|
|
|
391
384
|
**Is the free plan really enough for normal use?**
|
|
392
|
-
Yes for personal/dev use.
|
|
385
|
+
Yes for personal/dev use. The free tier covers a few daily questions. Heavy interactive use, multiple chat sessions per day, or running the server in production should consider the paid tiers.
|
|
393
386
|
|
|
394
387
|
**Do you store my conversation or query data?**
|
|
395
388
|
No. Only your API key and the request parameters (source, target, period, time) are sent to allratestoday.com — never the LLM's conversation context, sheet contents, or anything else.
|
|
@@ -414,8 +407,8 @@ The Anthropic MCP standard works with any MCP-compatible client. ChatGPT Desktop
|
|
|
414
407
|
## Development
|
|
415
408
|
|
|
416
409
|
```bash
|
|
417
|
-
git clone https://github.com/cahthuranag/
|
|
418
|
-
cd
|
|
410
|
+
git clone https://github.com/cahthuranag/mcp-server.git
|
|
411
|
+
cd mcp-server
|
|
419
412
|
npm install
|
|
420
413
|
npm run build
|
|
421
414
|
ALLRATES_API_KEY=art_live_xxxxx node dist/index.js
|
|
@@ -448,7 +441,7 @@ package.json # npm metadata, dependencies, scripts
|
|
|
448
441
|
|
|
449
442
|
### Contributing
|
|
450
443
|
|
|
451
|
-
Issues and PRs welcome at [github.com/cahthuranag/
|
|
444
|
+
Issues and PRs welcome at [github.com/cahthuranag/mcp-server](https://github.com/cahthuranag/mcp-server). Before opening a PR:
|
|
452
445
|
|
|
453
446
|
1. `npm run build` should succeed with no errors
|
|
454
447
|
2. Test against a real AllRatesToday API key (set in `ALLRATES_API_KEY`)
|
|
@@ -459,7 +452,7 @@ Issues and PRs welcome at [github.com/cahthuranag/realtime-exchange-rate-mcp](ht
|
|
|
459
452
|
|
|
460
453
|
## Changelog
|
|
461
454
|
|
|
462
|
-
See [GitHub Releases](https://github.com/cahthuranag/
|
|
455
|
+
See [GitHub Releases](https://github.com/cahthuranag/mcp-server/releases) for the full list. Recent highlights:
|
|
463
456
|
|
|
464
457
|
- **0.3.x** — API key required for all tools; fail-fast at startup with clear error
|
|
465
458
|
- **0.2.x** — Removed news tool, required auth on `get_historical_rates`
|
|
@@ -470,7 +463,7 @@ See [GitHub Releases](https://github.com/cahthuranag/realtime-exchange-rate-mcp/
|
|
|
470
463
|
## Support
|
|
471
464
|
|
|
472
465
|
- **API issues**: [support@allratestoday.com](mailto:support@allratestoday.com)
|
|
473
|
-
- **Bug reports**: [github.com/cahthuranag/
|
|
466
|
+
- **Bug reports**: [github.com/cahthuranag/mcp-server/issues](https://github.com/cahthuranag/mcp-server/issues)
|
|
474
467
|
- **MCP questions**: [modelcontextprotocol.io](https://modelcontextprotocol.io) — protocol docs
|
|
475
468
|
- **Status / uptime**: [allratestoday.com](https://allratestoday.com) (status page in development)
|
|
476
469
|
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allratestoday/mcp-server",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"mcpName": "io.github.cahthuranag/
|
|
3
|
+
"version": "0.3.4",
|
|
4
|
+
"mcpName": "io.github.cahthuranag/mcp-server",
|
|
5
5
|
"description": "MCP server for AllRatesToday — let AI coding tools (Claude Code, Cursor, Claude Desktop) fetch real-time and historical currency exchange rates.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mcp",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"homepage": "https://allratestoday.com",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/cahthuranag/
|
|
20
|
+
"url": "git+https://github.com/cahthuranag/mcp-server.git"
|
|
21
21
|
},
|
|
22
|
-
"bugs": "https://github.com/cahthuranag/
|
|
22
|
+
"bugs": "https://github.com/cahthuranag/mcp-server/issues",
|
|
23
23
|
"type": "module",
|
|
24
24
|
"main": "dist/index.js",
|
|
25
25
|
"bin": {
|