The ECB deposit facility rate drives borrowing costs, bond yields, mortgage rates, and foreign exchange across the eurozone. Getting that number into an AI agent used to mean building a custom ECB API integration. The eu-finance MCP server handles it in one tool call.
The problem it solves
Most financial analysis workflows still rely on humans manually checking the ECB website, copying numbers into a spreadsheet, and writing a summary. With an MCP-enabled AI agent, that loop collapses into a single prompt.
What the agent can do
With eu-finance installed, an agent can:
Answer rate questions directly
"What is the current ECB deposit facility rate?"
→ The ECB deposit facility rate is currently 2.50%, as of 12 March 2026.
Compare with historical context
"How does the current ECB main refi rate compare to its peak in 2023?"
→ The current main refi rate is 2.65%, down from its peak of 4.50% in September 2023.
Cross-reference with FX data
"Show me the ECB rate alongside EUR/USD for the last 6 months"
→ [structured comparison of rate decisions and EUR/USD movements]
Feed into automated reports
An agent running on a cron or workflow trigger can pull ECB rates, format a summary, and route it to Slack, email, or a dashboard — without manual intervention.
Real workflow: weekly macro brief
Agent prompt (runs every Monday 7:00 AM):
"Generate a European macro brief covering:
1. Current ECB key rates and last change date
2. EUR/USD, EUR/GBP, EUR/CHF spot rates
3. Eurozone inflation latest print vs target
4. Q4 2025 GDP growth for Germany, France, Italy, Spain
Format as a concise executive brief under 300 words."
The agent calls get_ecb_rates, get_euro_exchange, get_eu_inflation, and get_eu_gdp — four tool calls, one output, zero manual work.
Rate monitoring for financial products
For teams building financial products:
- Fixed income: monitor the deposit rate to track policy stance
- FX desks: correlate rate decisions with EUR pairs in real time
- Mortgage analytics: track main refi rate as a proxy for retail borrowing costs
- Startup finance: monitor rates for cash management decisions
Setup
{
"mcpServers": {
"eu-finance": {
"command": "npx",
"args": ["-y", "@nexusforgetools/eu-finance"]
}
}
}
Free plan: 100 calls/day, no API key needed. Pro plan: 5,000 calls/day with real-time data priority.