EU Finance MCP Server + Claude Desktop — Setup in 60 Seconds

Add real-time ECB interest rates, Eurostat GDP and EU inflation data to Claude Desktop with the free eu-finance MCP server. No API key required.

By NexusForge 1 min read

Key facts

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

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"
      }
    }
  }
}

Frequently Asked Questions

Do I need Claude Pro to use MCP servers?

MCP servers work with Claude Desktop on any plan. Claude Code requires a Pro or Team subscription.

Does eu-finance work with Claude.ai in the browser?

Not directly — MCP servers currently require a local client (Claude Desktop or Claude Code). Browser-based Claude does not support MCP.

Will eu-finance slow down Claude Desktop?

No. The MCP server runs as a local npx process. It only activates when Claude calls one of the six tools. Idle resource usage is negligible.

Ready to try NexusForge? Get started free →

Get Started

Sources

  1. [1] Claude Desktop — MCP documentation
  2. [2] eu-finance setup guide

Was this guide helpful?