Uses GitHub OAuth for secure authentication to access foreign exchange rate data and currency conversion tools.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FX Currency MCP Serverconvert 100 USD to EUR"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FX Currency MCP Server
A Model Context Protocol (MCP) server that provides real-time and historical foreign exchange rate data from the Frankfurter API. Built with FastMCP and includes GitHub OAuth authentication.
Features
🌍 31+ Currencies - Support for major world currencies
💱 Currency Conversion - Convert between any supported currencies
📊 Current Rates - Get today's exchange rates for any base currency
📅 Historical Data - Access historical rates from 2020 onwards
📈 Time Series - Query rate changes over custom date ranges
🔐 GitHub OAuth - Secure authentication with GitHub
📝 Comprehensive Logging - Built-in logging for debugging and monitoring
Supported Currencies
AUD, BGN, BRL, CAD, CHF, CNY, CZK, DKK, EUR, GBP, HKD, HUF, IDR, ILS, INR, ISK, JPY, KRW, MXN, MYR, NOK, NZD, PHP, PLN, RON, SEK, SGD, THB, TRY, USD, ZAR
Installation
Prerequisites
Python 3.13+
uv (recommended) or pip
Setup
Clone the repository
git clone https://github.com/yourusername/ai-fx-mcp.git cd ai-fx-mcpInstall dependencies
uv sync # or with pip pip install -e .Configure environment variables
cp .env.example .envEdit
.envand add your GitHub OAuth credentials:GITHUB_CLIENT_ID=your_github_client_id GITHUB_CLIENT_SECRET=your_github_client_secret AUTH_BASE_URL=http://localhost:8080
GitHub OAuth Setup
Go to GitHub Settings → Developer settings → OAuth Apps
Create a new OAuth App
Set Authorization callback URL to:
http://localhost:8080/oauth/callbackCopy the Client ID and generate a Client Secret
Add them to your
.envfile
Usage
Run as HTTP Server (Development)
uv run python fx_mcp_server.pyServer will start on http://localhost:8080/mcp
Run with Claude Desktop (stdio mode)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"fx-currency": {
"command": "uv",
"args": [
"--directory",
"/path/to/ai-fx-mcp",
"run",
"python",
"fx_mcp_server.py",
"--stdio"
],
"env": {
"GITHUB_CLIENT_ID": "your_github_client_id",
"GITHUB_CLIENT_SECRET": "your_github_client_secret",
"AUTH_BASE_URL": "http://localhost:8080"
}
}
}
}Available Tools
available_currencies()
Returns a list of all supported currency codes and names.
Example Response:
{
"USD": "United States Dollar",
"EUR": "Euro",
"JPY": "Japanese Yen"
}convert_currency(from_code: str, to_code: str, amount: float = 1.0)
Convert an amount from one currency to another.
Parameters:
from_code: Source currency code (e.g., "USD")to_code: Target currency code (e.g., "EUR")amount: Amount to convert (default: 1.0)
Example:
convert_currency("USD", "EUR", 100)
# Returns: {"amount": 100, "base": "USD", "rates": {"EUR": 0.85}, "converted_amount": 85.0}today_rates(code: str)
Get current exchange rates for a base currency.
Parameters:
code: Base currency code (e.g., "USD")
Example:
today_rates("USD")
# Returns all current rates relative to USDhistorical_rates(date: str, base: str = "EUR", symbols: str | None = None)
Get exchange rates for a specific historical date.
Parameters:
date: Date in YYYY-MM-DD formatbase: Base currency code (default: "EUR")symbols: Optional comma-separated currency codes to filter
Example:
historical_rates("2024-01-15", "USD", "EUR,JPY")time_series_rates(start_date: str, end_date: str, base: str = "EUR", symbols: str | None = None)
Get exchange rate time series data over a date range.
Parameters:
start_date: Start date in YYYY-MM-DD formatend_date: End date in YYYY-MM-DD formatbase: Base currency code (default: "EUR")symbols: Optional comma-separated currency codes to filter
Example:
time_series_rates("2024-01-01", "2024-01-31", "USD", "EUR,JPY")Logging
Logs are written to:
Console (stdout) - captured by cloud platforms
File (
/tmp/fx-mcp-server.log) - for local development
View logs in real-time:
tail -f /tmp/fx-mcp-server.logFilter for application logs only:
tail -f /tmp/fx-mcp-server.log | grep __main__Docker Support
Build Docker Image
Build the image for your platform:
# For local testing (uses your machine's architecture)
docker build -t pavm035/ai-fx-currency-mcp:v1.0 .
# For deployment to cloud platforms (Intel/AMD servers)
docker build --platform linux/amd64 -t pavm035/ai-fx-currency-mcp:v1.0 .
# For multi-platform support (both ARM and AMD64)
docker buildx build --platform linux/amd64,linux/arm64 -t pavm035/ai-fx-currency-mcp:v1.0 --push .Run Docker Container Locally
# Run with environment file
docker run -p 8080:8080 --env-file .env pavm035/ai-fx-currency-mcp:v1.0
# Or with individual environment variables
docker run -p 8080:8080 \
-e GITHUB_CLIENT_ID=your_client_id \
-e GITHUB_CLIENT_SECRET=your_client_secret \
-e AUTH_BASE_URL=http://localhost:8080 \
-e ENABLE_AUTH=true \
pavm035/ai-fx-currency-mcp:v1.0Note: Do NOT use quotes around values in .env files when using --env-file.
Push to Docker Hub
# Login to Docker Hub
docker login
# Push the image
docker push pavm035/ai-fx-currency-mcp:v1.0Deployment
Deploy to Render.com
Using Pre-built Docker Image:
Create a new Web Service on Render
Select "Deploy an existing image from a registry"
Image URL:
pavm035/ai-fx-currency-mcp:v1.0Add environment variables in Render dashboard
Deploy!
Using GitHub Repository:
Create a new Web Service on Render
Connect your GitHub repository
Render will automatically detect the Dockerfile
Set environment variables
Deploy!
Environment Variables for Render:
GITHUB_CLIENT_ID=your_client_id
GITHUB_CLIENT_SECRET=your_client_secret
AUTH_BASE_URL=https://your-app.onrender.com
ENABLE_AUTH=trueOther Cloud Platforms
The server is cloud-ready with stdout logging that works with:
AWS ECS/Fargate (CloudWatch Logs)
Google Cloud Run (Cloud Logging)
Azure Container Apps (Azure Monitor)
Any container platform with Docker support
Development
Project Structure
ai-fx-mcp/
├── fx_mcp_server.py # Main MCP server implementation
├── pyproject.toml # Project dependencies and metadata
├── .env.example # Environment variable template
├── .gitignore # Git ignore patterns
└── README.md # This fileTesting
Test individual tools:
uv run python -c "from fx_mcp_server import convert_currency; print(convert_currency('USD', 'EUR', 100))"Data Source
Exchange rate data is provided by Frankfurter API, a free and open-source API for current and historical foreign exchange rates published by the European Central Bank.
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Author
Pavan
Acknowledgments
FastMCP - MCP server framework
Frankfurter API - Currency data provider
Model Context Protocol - Protocol specification
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.