What is the AllRatesToday MCP server?
Real-time & historical exchange rates for 150+ currencies via AllRatesToday (mid-market).
How to install AllRatesToday
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
ALLRATES_API_KEYrequiredsecretYour AllRatesToday API key (art_live_xxxxx). Required for all tools. Sign up free at https://allratestoday.com/register.
ALLRATES_BASE_URLOverride API base URL (default: https://allratestoday.com/api).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@allratestoday/mcp-server"
],
"env": {
"ALLRATES_API_KEY": "<YOUR_ALLRATES_API_KEY>",
"ALLRATES_BASE_URL": "<YOUR_ALLRATES_BASE_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@allratestoday/mcp-server"
],
"env": {
"ALLRATES_API_KEY": "<YOUR_ALLRATES_API_KEY>",
"ALLRATES_BASE_URL": "<YOUR_ALLRATES_BASE_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@allratestoday/mcp-server"
],
"env": {
"ALLRATES_API_KEY": "<YOUR_ALLRATES_API_KEY>",
"ALLRATES_BASE_URL": "<YOUR_ALLRATES_BASE_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@allratestoday/mcp-server"
],
"env": {
"ALLRATES_API_KEY": "<YOUR_ALLRATES_API_KEY>",
"ALLRATES_BASE_URL": "<YOUR_ALLRATES_BASE_URL>"
}
}
}
}Claude Code
claude mcp add mcp-server --env ALLRATES_API_KEY=<YOUR_ALLRATES_API_KEY> --env ALLRATES_BASE_URL=<YOUR_ALLRATES_BASE_URL> -- npx -y @allratestoday/mcp-serverRelated MCP servers
Real-time currency exchange rates, historical data, and multi-currency lookups for MCP clients.
0
View repository →JavaScript
MIT