
Inday โ Public Holiday API MCP Server
Ask your AI assistant about public holidays in 30+ countries โ right inside Claude, Cursor, VS Code, and any MCP-compatible client.
MCP Endpoint: https://inday.co/api/mcp
Transport: Streamable HTTP
Auth: X-API-KEY header
Available Tools
| Tool | What it does | Example prompt |
|---|---|---|
check_holiday | Check if a specific date is a public holiday | "Is April 23rd a holiday in Turkey?" |
get_calendar | Full year holiday calendar for a country | "Show me all holidays in Germany in 2026" |
list_countries | List all 30+ supported countries | "What countries does Inday support?" |
next_holiday | Find the next upcoming holiday | "When is the next holiday in the UAE?" |
count_working_days | Count working days between two dates | "How many billable days in April in Turkey?" |
Example Prompts
- "Is next Monday a holiday in Turkey? If so, what holiday is it?"
- "Plan a sprint for April โ exclude all holidays in Germany and the UK."
- "How many working days does my UAE team have in Ramadan 2026?"
- "What's the next long weekend in the US?"
- "Compare holidays in France and Germany this month โ which team has more working days?"
- "Schedule a client call for next week avoiding holidays in both Turkey and the US."
Supported Countries
๐น๐ท TR ยท ๐ฉ๐ช DE ยท ๐บ๐ธ US ยท ๐ฌ๐ง GB ยท ๐ฆ๐ช AE ยท ๐ธ๐ฆ SA ยท ๐ซ๐ท FR ยท ๐ฏ๐ต JP ยท ๐จ๐ฆ CA ยท ๐ฆ๐บ AU ยท ๐ฎ๐ณ IN ยท ๐ง๐ท BR ยท ๐ณ๐ฑ NL ยท ๐ช๐ธ ES ยท ๐ฎ๐น IT ยท ๐ต๐ฑ PL ยท ๐ธ๐ช SE ยท ๐ณ๐ด NO ยท ๐ฉ๐ฐ DK ยท ๐ซ๐ฎ FI ยท ๐จ๐ญ CH ยท ๐ฆ๐น AT ยท ๐ง๐ช BE ยท ๐ต๐น PT ยท ๐จ๐ฟ CZ ยท ๐ท๐ด RO ยท ๐บ๐ฆ UA ยท ๐ท๐บ RU ยท ๐ฎ๐ฉ ID ยท ๐ธ๐ฌ SG ยท and more.
Full list via list_countries tool or inday.co
Pricing
| Plan | Price | Requests/month | Rate limit |
|---|---|---|---|
| Free | $0 | 1,000 | 10 req/min |
| Starter | $2.9/mo | 10,000 | 100 req/min |
| Professional | $9.9/mo | 100,000 | 1,000 req/min |
| Enterprise | $19.9/mo | 500,000 | 10,000 req/min |
Links
- ๐ Website: inday.co
- ๐ Get API Key: inday.co/signup
- ๐ฆ MCP Registry:
io.github.gokhanibrikci/inday-holiday-api - ๐ค Support: inday.co/support
Getting Started
Step 1 โ Get a free API key
Sign up at inday.co/signup. Free tier includes 1,000 requests/month, no credit card required.
Step 2 โ Add to your AI client (see setup below)
Step 3 โ Start asking questions
"Is next Monday a holiday in Turkey?" ยท "How many working days in Germany in Q2 2026?"
Setup
Claude Desktop
macOS โ edit ~/Library/Application Support/Claude/claude_desktop_config.json
Windows โ edit %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"inday": {
"type": "streamable-http",
"url": "https://inday.co/api/mcp",
"headers": {
"X-API-KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop after saving.
Cursor
Edit ~/.cursor/mcp.json (or Settings โ MCP โ Add Server):
{
"mcpServers": {
"inday": {
"type": "streamable-http",
"url": "https://inday.co/api/mcp",
"headers": {
"X-API-KEY": "your_api_key_here"
}
}
}
}VS Code (GitHub Copilot / Continue)
Edit .vscode/mcp.json in your workspace, or your user settings.json:
{
"mcp": {
"servers": {
"inday": {
"type": "streamable-http",
"url": "https://inday.co/api/mcp",
"headers": {
"X-API-KEY": "your_api_key_here"
}
}
}
}
}Smithery (1-click install)
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub โ