EU Finance MCP + Cursor — ECB & Eurostat in Agent Mode

Connect eu-finance MCP server to Cursor IDE for real-time ECB interest rates and Eurostat data in your AI coding workflow. Free, npx setup.

By NexusForge 1 min read

Key facts

Cursor’s Agent mode can call MCP tools during code generation. Combined with eu-finance, this means Cursor can fetch live ECB rates or Eurostat data while helping you build financial applications.

When this is useful

Configuration

Project-level (.cursor/mcp.json)

{
  "mcpServers": {
    "eu-finance": {
      "command": "npx",
      "args": ["-y", "@nexusforgetools/eu-finance"]
    }
  }
}

Global (all projects)

Create or edit ~/.cursor/mcp.json with the same content.

With API key (Pro/Scale plan)

{
  "mcpServers": {
    "eu-finance": {
      "command": "npx",
      "args": ["-y", "@nexusforgetools/eu-finance"],
      "env": {
        "NEXUSFORGE_API_KEY": "nf_your_key_here"
      }
    }
  }
}

Example: Cursor builds a rate tracker

In Cursor Agent mode:

"Build a Node.js script that fetches the current ECB deposit rate 
and EUR/USD rate, then writes them to a JSON file with a timestamp. 
Use the eu-finance MCP data to validate the output format."

Cursor calls get_ecb_rates and get_euro_exchange to get real current values, then uses those exact values in the generated code and tests.

Available tools

ToolWhat it fetches
get_ecb_ratesECB deposit, refi, marginal lending rates
get_euro_exchangeEUR/USD, EUR/GBP, EUR/CHF + 27 more
get_eu_inflationHICP by EU country
get_eu_gdpQuarterly GDP by country
get_eu_unemploymentUnemployment by country
compare_eu_economiesMulti-indicator comparison

Rate limits

Free plan: 100 calls/day. Pro: 5,000/day at €29/month.

Frequently Asked Questions

Does eu-finance work in Cursor Agent mode?

Yes. Cursor Agent mode supports MCP tools. The agent can call get_ecb_rates, get_eu_inflation and all other eu-finance tools during code generation.

Do I need to configure anything in the Cursor settings UI?

Cursor uses a .cursor/mcp.json file in your project or a global config. The format is the same as Claude Desktop's mcpServers object.

Can I use eu-finance across all Cursor projects?

Yes. Place the config in the global Cursor MCP config (~/.cursor/mcp.json) and it will be available in every project.

Ready to try NexusForge? Get started free →

Get Started

Sources

  1. [1] Cursor MCP configuration
  2. [2] eu-finance on npm

Was this guide helpful?