PluginBench
MCP Server
Active
MIT

io.github.cahthuranag/realtime-exchange-rate-mcp MCP Server

io.github.cahthuranag/realtime-exchange-rate-mcp

What is the io.github.cahthuranag/realtime-exchange-rate-mcp MCP server?

Real-time currency exchange rates, historical data, and multi-currency lookups for MCP clients.

How to install io.github.cahthuranag/realtime-exchange-rate-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • ALLRATES_API_KEY
    required
    secret

    API key (art_live_xxxxx). Required for all tools. Get one free at https://allratestoday.com/register.

  • ALLRATES_BASE_URL

    Override API base URL (default: https://allratestoday.com/api).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "realtime-exchange-rate-mcp": {
      "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": {
    "realtime-exchange-rate-mcp": {
      "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": {
    "realtime-exchange-rate-mcp": {
      "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": {
    "realtime-exchange-rate-mcp": {
      "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 realtime-exchange-rate-mcp --env ALLRATES_API_KEY=<YOUR_ALLRATES_API_KEY> --env ALLRATES_BASE_URL=<YOUR_ALLRATES_BASE_URL> -- npx -y @allratestoday/mcp-server

Related MCP servers

Real-time & historical exchange rates for 150+ currencies via AllRatesToday (mid-market).

1
JavaScript
MIT
View repository →