INDIVIDUAL MCP TOOL
get_publication_calendar
Which dates a bank actually published a rate table — 'did the ECB publish on 2026-01-01?
LIVE ENDPOINT
https://allratestoday.com/api/mcp
Connect to this endpoint to inspect the live schema for get_publication_calendar and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.allratestoday]
url = "https://allratestoday.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"allratestoday": {
"type": "http",
"url": "https://allratestoday.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: allratestoday
Remote MCP URL: https://allratestoday.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"allratestoday": {
"url": "https://allratestoday.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"allratestoday": {
"type": "http",
"url": "https://allratestoday.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "allratestoday",
"transport": "streamable-http",
"url": "https://allratestoday.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_exchange_rate— Use this when the user asks 'what is X in Y?get_historical_rates— Fixed-window time series ending now: 'how has EUR/USD moved this week', 'last month of GBP/JPY', '1-year AUD/USD'.get_rates_authenticated— One source against several targets in a single call ('USD vs EUR, GBP, JPY'), or the rate at a specific past datetime, optionally bucketed by hour/day/week/month.list_currencies— Call this when unsure whether a currency code is supported, or for 'what currencies do you support?list_central_banks— Call this FIRST when you need a bank code, or for 'which central banks do you cover?get_official_rates— OFFICIAL rates a named institution published — 'what is the ECB rate for USD?get_official_rate_history— Date-by-date series of one bank's OFFICIAL rates — 'ECB USD rate for every day of 2025', 'how did the CBSL rate move last quarter'.compare_official_rates— One currency pair across ALL institutions at once — 'what does each central bank say USD/EUR is?