Server data from the Official MCP Registry
Currency conversion and exchange rates for AI. 170+ currencies, historical data back to 1999.
Currency conversion and exchange rates for AI. 170+ currencies, historical data back to 1999.
Valid MCP server (5 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
9 files analyzed Β· 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: UNIRATE_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-unirate-api-mcp": {
"env": {
"UNIRATE_API_KEY": "your-unirate-api-key-here"
},
"args": [
"-y",
"@unirate/mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol server for the UniRate API β give Claude, Cursor, Continue, and any MCP-compatible AI assistant first-class access to currency conversion and exchange rates.
@modelcontextprotocol/sdkMost "currency for AI" workflows today involve hand-rolled fetch wrappers in custom tools, or generic HTTP MCP servers that hand the model raw JSON. This server gives models a tight, typed, currency-aware tool surface β they ask "what was 100 USD in EUR on 2020-03-15?" and get back a formatted answer plus a structured payload they can chain into other tool calls.
npm install -g @unirate/mcp
Or run on demand with npx @unirate/mcp (no install).
Free tier covers convert, latest_rate, and list_currencies. Sign up at unirateapi.com β no credit card required.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"unirate": {
"command": "npx",
"args": ["-y", "@unirate/mcp"],
"env": {
"UNIRATE_API_KEY": "your-api-key-here"
}
}
}
}
Restart Claude Desktop. The four UniRate tools will appear in the tool picker.
Add to your MCP config (.cursor/mcp.json, ~/.continue/config.json, etc.):
{
"mcpServers": {
"unirate": {
"command": "npx",
"args": ["-y", "@unirate/mcp"],
"env": { "UNIRATE_API_KEY": "your-api-key-here" }
}
}
}
git clone https://github.com/UniRate-API/unirate-mcp.git
cd unirate-mcp
npm install && npm run build
UNIRATE_API_KEY=your-key node dist/index.js
By default the server uses stdio, which is what Claude Desktop and most MCP clients want. To host it as a remote endpoint instead β for shared use, multi-user deployments, or browser-based clients β start it in HTTP mode:
UNIRATE_API_KEY=your-key unirate-mcp --http 3001
# or via env:
UNIRATE_API_KEY=your-key UNIRATE_MCP_HTTP_PORT=3001 unirate-mcp
That exposes:
POST /mcp β Streamable HTTP endpoint (SSE-capable). Stateless: a fresh server is built per request, so the same process can serve many concurrent clients.GET /healthz β JSON liveness probe ({ "status": "ok", "server": "unirate-mcp", "version": "..." }).Point any Streamable-HTTP-capable MCP client (Claude Desktop with remote server support, Cursor remote MCP, etc.) at http://your-host:3001/mcp. Drop it behind a reverse proxy + TLS for production.
The package exports buildServer(client) so you can wire it to whatever transport your runtime prefers. For Workers / Deno / Bun, use the SDK's webStandardStreamableHttp transport with an exported buildServer instance.
import { UnirateClient } from "@unirate/mcp/dist/client.js";
import { buildServer } from "@unirate/mcp";
// β connect to your runtime's preferred transport
convertConvert an amount from one currency to another at the latest rate.
| Param | Type | Required | Notes |
|---|---|---|---|
from | string | yes | ISO 4217 code (e.g. USD) |
to | string | yes | ISO 4217 code (e.g. EUR) |
amount | number | yes | Positive amount in from |
Example call:
{ "name": "convert", "arguments": { "from": "USD", "to": "EUR", "amount": 100 } }
Response: human-readable text plus structured { from, to, amount, result }.
latest_rateGet current exchange rate(s).
| Param | Type | Required | Notes |
|---|---|---|---|
from | string | yes | Base currency |
to | string | no | Target. Omit to get rates for all currencies |
historical_rate (Pro plan)Get the exchange rate that was in effect on a specific date. Coverage back to 1999-01-04 for major fiat pairs.
| Param | Type | Required | Notes |
|---|---|---|---|
date | string | yes | YYYY-MM-DD (e.g. 2020-03-15) |
from | string | yes | Source currency |
to | string | yes | Target currency |
amount | number | no | Defaults to 1 |
Free-tier keys receive a clear error pointing to unirateapi.com for upgrade.
list_currenciesReturns the array of supported currency codes (170+) with no parameters. Useful for autocomplete or validating user-supplied codes.
All UniRate API failures are mapped to friendly tool errors:
| HTTP | Error class | What the model sees |
|---|---|---|
| 400 | InvalidRequestError | "Invalid request parameters" |
| 401 | AuthenticationError | "Missing or invalid API key" |
| 403 | ProPlanRequiredError | "β¦requires Proβ¦ upgrade at https://unirateapi.com" |
| 404 | InvalidCurrencyError | "Currency not found or no data available" |
| 429 | RateLimitError | "Rate limit exceeded" |
| 503 | APIError | "Service unavailable" |
Network/timeout errors are wrapped in UnirateError. Tool calls always return a response object with isError: true rather than throwing protocol-level errors, so the model can recover gracefully.
npm install
npm run build # compile TypeScript to dist/
npm test # 24 mock tests
UNIRATE_LIVE=1 UNIRATE_API_KEY=... npm run test:live # +4 live free-tier tests
UniRate offers official client libraries in 9 languages:
Plus an n8n community node.
MIT β see LICENSE.
Be the first to review this server!
by Modelcontextprotocol Β· Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno Β· Developer Tools
Toleno Network MCP Server β Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace Β· Developer Tools
Create, build, and publish Python MCP servers to PyPI β conversationally.