Real-time currency exchange rates, historical data, and financial news via AllRatesToday.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-cahthuranag-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Real-time currency exchange rates, historical data, and financial news via AllRatesToday.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
An MCP server for Massive.com Financial Market Data
Allow parsing of object rest/spread
MCP server for Paradex perp trading. Market data, accounts, orders, positions, and vaults.
MCP Security Weekly
Get CVE alerts and security updates for io.github.cahthuranag/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server that gives AI coding tools — Claude Code, Cursor, Claude Desktop, and any other Model Context Protocol client — real-time currency exchange rates, historical data, and financial news from AllRatesToday.
Ask your assistant things like:
npm install -g @allratestoday/mcp-server
Or run without installing via npx @allratestoday/mcp-server.
claude mcp add allratestoday -- npx -y @allratestoday/mcp-server
Then set your API key:
claude mcp env allratestoday ALLRATES_API_KEY=art_live_xxxxx
Edit ~/.cursor/mcp.json (or your project .cursor/mcp.json):
{
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATES_API_KEY": "art_live_xxxxx"
}
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"allratestoday": {
"command": "npx",
"args": ["-y", "@allratestoday/mcp-server"],
"env": {
"ALLRATES_API_KEY": "art_live_xxxxx"
}
}
}
}
Restart the app after editing.
art_live_xxxxx.The free plan includes 300 requests/month. Paid plans start at €4.99/mo.
| Tool | API key | Description |
|---|---|---|
get_exchange_rate | no | Current mid-market rate between two currencies. |
get_historical_rates | yes | Historical data points over 1d, 7d, 30d, or 1y. |
get_rates_authenticated | yes | Multi-target rates and higher limits. |
list_currencies | no | All supported currencies with codes, names, symbols. |
Public tools (get_exchange_rate, list_currencies) work without a key. Set ALLRATES_API_KEY for the historical and multi-target endpoints.
| Variable | Default | Purpose |
|---|---|---|
ALLRATES_API_KEY | (unset) | Your AllRatesToday API key. Required for get_rates_authenticated. |
ALLRATES_BASE_URL | https://allratestoday.com/api | Override for self-hosted or staging environments. |
git clone https://github.com/cahthuranag/mcp-server.git
cd mcp-server
npm install
npm run build
node dist/index.js # server runs on stdio — hit Ctrl+C to exit
MIT — see LICENSE.