Create API key
Sign in and copy your CurrencyBeacon key from the account dashboard.
Connect Claude, ChatGPT, Cursor, VS Code, Codex, and other MCP clients to CurrencyBeacon rates. Use the same API key, quota, and exchange-rate data as the REST API.
https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY
# URL
https://api.currencybeacon.com/mcp
# Header
Authorization: Bearer YOUR_API_KEY
Same key as the REST API. Each successful tools/call counts as one request against your quota.
Use URL-parameter auth when your MCP client does not support custom headers. Use bearer-token auth when it does.
Sign in and copy your CurrencyBeacon key from the account dashboard.
Paste the remote server URL into your LLM client or agent builder.
Run prompts for conversion, time-series, historical rates, and supported currencies.
Works with every client, including those without header support.
https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY
Keeps the key out of the URL for clients that expose headers.
URL: https://api.currencybeacon.com/mcp
Header: Authorization: Bearer YOUR_API_KEY
Give support, finance, and ops assistants access to live conversions and supported currency metadata.
Analyze historical rates, compare currency movement, and create reports from timeseries data.
Let coding assistants fetch live exchange-rate data while building dashboards or billing flows.
Let agents check remaining quota before running larger workflows or repeated timeseries calls.
The query-parameter URL is the fastest path. Header-based auth is also supported for clients that expose headers.
https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY
https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY
Create or edit ~/.cursor/mcp.json.
{
"mcpServers": {
"currencybeacon": {
"url": "https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY"
}
}
}
Create .vscode/mcp.json in your workspace.
{
"servers": {
"currencybeacon": {
"type": "http",
"url": "https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY"
}
}
}
claude mcp add -t http currencybeacon "https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY"
Edit ~/.codex/config.toml.
[mcp_servers.currencybeacon]
url = "https://api.currencybeacon.com/mcp?api_key=YOUR_API_KEY"
Use this when your client supports custom headers.
{
"mcpServers": {
"currencybeacon": {
"url": "https://api.currencybeacon.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Convert 1,250 USD to EUR using CurrencyBeacon, then show the raw rate and converted amount.
Get USD to GBP rates for 2024-03-15 and explain how to use the result for invoice reconciliation.
Fetch USD to JPY daily rates for Q1 2025 and summarize the strongest and weakest periods.
Use CurrencyBeacon MCP to design a currency conversion widget with USD, EUR, GBP, CAD, and GHS.
Each successful tools/call counts as one request against your CurrencyBeacon API usage.
get_latest_ratesInputs: base, symbols. Returns latest rates for the requested base.
convert_currencyInputs: from, to, amount, optional date.
get_historical_ratesInputs: date, base, symbols. Returns rates for one date.
get_time_seriesInputs: start_date, end_date, base, symbols.
list_currenciesReturns supported currency names, codes, symbols, precision, and formatting metadata.
get_account_usageReturns current plan, used calls, limit, and remaining API requests.
Confirm the server URL includes your API key or the Authorization header is present.
Run get_account_usage or check your dashboard. MCP and REST usage share the same quota.
Run list_currencies and use ISO-style three-letter currency codes.
Email [email protected] with your client name and error message.