Claude Desktop supports MCP servers natively since early 2025. Adding eu-finance gives Claude real-time access to European financial data — no plugins, no browser extensions, no custom code.
What changes after installation
Before eu-finance:
“What is the ECB rate?” → Claude gives a training-data answer, possibly out of date.
After eu-finance:
“What is the ECB rate?” → Claude calls
get_ecb_rates, returns today’s exact figure with source and date.
The difference is that Claude stops guessing and starts fetching.
Installation
Step 1 — Open config
On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Step 2 — Add server
{
"mcpServers": {
"eu-finance": {
"command": "npx",
"args": ["-y", "@nexusforgetools/eu-finance"]
}
}
}
Step 3 — Restart Claude Desktop
Fully quit (⌘Q) and reopen.
Step 4 — Test
"What are the three ECB key rates today?"
What Claude can now answer
- Current ECB deposit facility, main refi, and marginal lending rates
- EUR exchange rates against 30+ currencies
- HICP inflation for any EU member state
- Quarterly GDP growth by country
- Unemployment rate by EU country
- Multi-country economic comparisons
Free plan
100 API calls per day. No API key required. The package is fetched via npx on first use (~500KB, cached after that).
Pro plan
For heavier usage: 5,000 calls/day at €29/month. Add your key to the config:
{
"mcpServers": {
"eu-finance": {
"command": "npx",
"args": ["-y", "@nexusforgetools/eu-finance"],
"env": {
"NEXUSFORGE_API_KEY": "nf_your_key_here"
}
}
}
}