SYSTEM ACTIVE
MENU
HOME / MARKETPLACE / FINANCE / CURRENCY
LST FINANCE

Currency

UPDATED 1 MONTH AGO

Convert between 30+ world currencies using ECB-published reference rates.

LIVE HOSTED BY MCPMETER STREAMABLE HTTP MIT 2 TOOLS
MCP URL
https://proxy.mcpmeter.com/currency

§ OVERVIEW

Convert between 30+ world currencies using ECB-published reference rates.

TRY ASKING YOUR AGENT 3 PROMPTS
  • Convert 100 USD to EUR
  • How much is 50 GBP in JPY today?
  • List all supported currencies

What it does

A thin, fast bridge to the Frankfurter currency API. Frankfurter draws from the European Central Bank's official reference rates, published once per business day at 16:00 CET.

When to use it

  • An agent needs to convert an amount between any two of the 30+ currencies the ECB tracks.
  • You need the latest published reference rate for analytics, invoicing, or display.
  • You want zero rate-limits at the application level (mcpmeter handles upstream throttling for you).

What it returns

Each convert call returns the converted amount, the rate used, and the date the rate was published. Use it to build inline conversion in chat, summarise multi-currency transactions, or auto-fill currency picker UIs.

Caveats

  • ECB does not publish rates on weekends or bank holidays — calls during those windows return the most recent business-day rate.
  • These are reference rates, not bid/ask spreads. Don't use them for live FX trading.
  • 30+ currencies, but no crypto.

§ TOOLS

2 tools Read tools are read-only; write tools mutate state. Tap any read tool to try it inline.

TOOL
TYPE
ARGUMENTS · JSON
5/min · 60/day · per IP · powered by demo key
ERROR

                        
RESULT

                        
ARGUMENTS · JSON
5/min · 60/day · per IP · powered by demo key
ERROR

                        
RESULT

                        

§ PERFORMANCE

0
CALLS / 24H
100.0%
UPTIME / 30D
583ms
LATENCY P50
583ms
LATENCY P95
CALLS / DAY · LAST 30D 4 LIFETIME
2026-05-25 · 0 calls 2026-05-26 · 0 calls 2026-05-27 · 0 calls 2026-05-28 · 0 calls 2026-05-29 · 0 calls 2026-05-30 · 0 calls 2026-05-31 · 0 calls 2026-06-01 · 0 calls 2026-06-02 · 0 calls 2026-06-03 · 0 calls 2026-06-04 · 0 calls 2026-06-05 · 0 calls 2026-06-06 · 0 calls 2026-06-07 · 0 calls 2026-06-08 · 0 calls 2026-06-09 · 0 calls 2026-06-10 · 0 calls 2026-06-11 · 0 calls 2026-06-12 · 0 calls 2026-06-13 · 0 calls 2026-06-14 · 0 calls 2026-06-15 · 0 calls 2026-06-16 · 0 calls 2026-06-17 · 0 calls 2026-06-18 · 0 calls 2026-06-19 · 0 calls 2026-06-20 · 0 calls 2026-06-21 · 1 calls · 583ms avg 2026-06-22 · 0 calls 2026-06-23 · 0 calls
2026-05-25 2026-06-23
TOP CLIENTS · 30D 1 CALLS
01 mcpmeter (try-it) 1
DAILY SESSIONS · LAST 30D 1 SESSIONS · 30D
2026-05-25 · 0 sessions 2026-05-26 · 0 sessions 2026-05-27 · 0 sessions 2026-05-28 · 0 sessions 2026-05-29 · 0 sessions 2026-05-30 · 0 sessions 2026-05-31 · 0 sessions 2026-06-01 · 0 sessions 2026-06-02 · 0 sessions 2026-06-03 · 0 sessions 2026-06-04 · 0 sessions 2026-06-05 · 0 sessions 2026-06-06 · 0 sessions 2026-06-07 · 0 sessions 2026-06-08 · 0 sessions 2026-06-09 · 0 sessions 2026-06-10 · 0 sessions 2026-06-11 · 0 sessions 2026-06-12 · 0 sessions 2026-06-13 · 0 sessions 2026-06-14 · 0 sessions 2026-06-15 · 0 sessions 2026-06-16 · 0 sessions 2026-06-17 · 0 sessions 2026-06-18 · 0 sessions 2026-06-19 · 0 sessions 2026-06-20 · 0 sessions 2026-06-21 · 1 sessions 2026-06-22 · 0 sessions 2026-06-23 · 0 sessions
TOOLS · 30D / 7D
TOOL
7D CALLS
30D CALLS
AVG MS
ERR
convert
1
1
583
0

§ INTEGRATION

Pick your client. The proxy URL and bearer key go into your client's MCP config. The same shape works in 30+ MCP-compatible agents — for clients not listed, see the docs ↗.

ONE CLICK INSTALL DIRECTLY
Add to Cursor cursor:// Add to VS Code vscode:

Cursor & VS Code prompt for permission then install. Claude Code: paste the copied command into your terminal.

SIGN IN

Paste, save, restart your client. It'll prompt you to "Authenticate" — click it, sign in here, done. No keys to manage.

Paste your mcpm_live_… key into the snippet. Older clients without OAuth support, scripts, and curl all use this.

CLIENT
claude_desktop_config.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency"
    }
  }
}
claude_desktop_config.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
add an HTTP MCP BASH
claude mcp add currency \
  --transport http \
  https://proxy.mcpmeter.com/currency

# Then run /mcp inside Claude Code and pick "Authenticate".
add an HTTP MCP BASH
claude mcp add currency \
  --transport http \
  https://proxy.mcpmeter.com/currency \
  --header "Authorization: Bearer $MCPM_KEY"
~/.cursor/mcp.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency"
    }
  }
}
~/.cursor/mcp.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
cline_mcp_settings.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency"
    }
  }
}
cline_mcp_settings.json JSON
{
  "mcpServers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
.vscode/mcp.json JSON
{
  "servers": {
    "currency": {
      "type": "http",
      "url": "https://proxy.mcpmeter.com/currency"
    }
  }
}
.vscode/mcp.json JSON
{
  "servers": {
    "currency": {
      "type": "http",
      "url": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
~/.codeium/windsurf/mcp_config.json JSON
{
  "mcpServers": {
    "currency": {
      "serverUrl": "https://proxy.mcpmeter.com/currency"
    }
  }
}
~/.codeium/windsurf/mcp_config.json JSON
{
  "mcpServers": {
    "currency": {
      "serverUrl": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
~/.config/zed/settings.json JSON
{
  "context_servers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency"
    }
  }
}
~/.config/zed/settings.json JSON
{
  "context_servers": {
    "currency": {
      "url": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
~/.gemini/settings.json JSON
{
  "mcpServers": {
    "currency": {
      "httpUrl": "https://proxy.mcpmeter.com/currency"
    }
  }
}
~/.gemini/settings.json JSON
{
  "mcpServers": {
    "currency": {
      "httpUrl": "https://proxy.mcpmeter.com/currency",
      "headers": {
        "Authorization": "Bearer mcpm_live_…"
      }
    }
  }
}
~/.codex/config.toml TOML
[mcp_servers.currency]
url = "https://proxy.mcpmeter.com/currency"
~/.codex/config.toml TOML
[mcp_servers.currency]
url = "https://proxy.mcpmeter.com/currency"

[mcp_servers.currency.headers]
Authorization = "Bearer mcpm_live_…"
~/.continue/config.yaml YAML
mcpServers:
  - name: currency
    url: https://proxy.mcpmeter.com/currency
~/.continue/config.yaml YAML
mcpServers:
  - name: currency
    url: https://proxy.mcpmeter.com/currency
    headers:
      Authorization: Bearer mcpm_live_…
tools/list BASH
# curl can't run the OAuth dance — paste an mcpm_live_ key for raw HTTP testing.
curl -X POST https://proxy.mcpmeter.com/currency \
  -H "Authorization: Bearer $MCPM_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tools/list BASH
curl -X POST https://proxy.mcpmeter.com/currency \
  -H "Authorization: Bearer $MCPM_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

The proxy authenticates the bearer token, looks up the price, forwards the call to the upstream MCP, returns the response unchanged, and writes a usage record.

§ PRICING

PER_CALL pricing at $0.0002 / call (USD).

FREE TIER

Each consumer gets 30 calls / month at no cost. Resets on the 1st. After the allowance, calls bill at the per-call rate above.

§ TRUST & COMPLIANCE

NO PAYLOAD RETENTION

JSON-RPC bodies pass through. We log call metadata only.

PCI PASSTHROUGH

For PCI scope, mcpmeter is a network passthrough.

OPEN-SOURCE PROXY

Metering code is auditable on GitHub ↗; reconciles to Stripe nightly.

AUDIT LOGS

13 months retention in your region. CSV export.

START

ONE KEY. EVERY MCP.
ONE BILL.

Sign up free. Add a card later, only when you're ready to call paid tools.