loading…
Search for a command to run...
loading…
Provides authoritative Philippine national holiday data sourced from official presidential proclamations, including regular, special, and Islamic holidays. It e
Provides authoritative Philippine national holiday data sourced from official presidential proclamations, including regular, special, and Islamic holidays. It enables users to query specific dates, retrieve upcoming holidays, identify long weekends, and verify working day status.
A Model Context Protocol server that provides Philippine national holiday data to LLMs. Built on Cloudflare Workers with KV storage.
Public, read-only, no authentication required. Data sourced from official presidential proclamations published in the Official Gazette. Cached in Cloudflare KV for reliability and low-latency global access.
| Tool | Description |
|---|---|
get_holidays |
Get all holidays for a given year, optionally filtered by type |
get_holiday_by_date |
Look up whether a specific date is a holiday |
get_upcoming_holidays |
Get the next N holidays from a given date |
is_working_day |
Check if a specific date is a working day per proclamation data |
get_long_weekends |
Get all long weekend windows for a year |
| Type | Value | Pay Behavior |
|---|---|---|
| Regular Holiday | regular |
200% if worked, 260% on rest day |
| Special Non-Working | special_non_working |
No work, no pay. 130% if worked |
| Special Working | special_working |
Ordinary working day. No premium |
| Islamic Holiday | islamic |
Same rules as regular. Separate proclamation. |
Pay rules are informational metadata only. This server does not compute pay.
All data responses are wrapped in a standard envelope:
{
"_meta": {
"year": 2026,
"tier": "current",
"proclamation": "No. 1006",
"eid_fitr_status": "pending",
"eid_adha_status": "pending",
"last_updated": "2026-03-08",
"source": "Official Gazette of the Republic of the Philippines"
},
"data": { ... }
}
Error responses (isError: true) are returned as plain text without wrapping.
| Field | Type | Description |
|---|---|---|
date |
string |
ISO 8601 date: YYYY-MM-DD |
name |
string |
Official holiday name |
type |
string |
regular, special_non_working, special_working, islamic |
day_of_week |
string |
Full day name (e.g. "Thursday") |
movable |
boolean |
Whether the date is defined by a day-of-week rule |
double_holiday |
boolean |
Whether two holidays share this date |
double_holiday_names |
string[] | null |
Names of both holidays when double |
long_weekend |
object |
Long weekend window info (see below) |
source |
object |
Proclamation reference |
notes |
string | null |
Additional context |
All fields are always present. Fields without data are null, never omitted.
Islamic holidays include additional fields:
| Field | Type | Description |
|---|---|---|
eid_confirmed |
boolean |
Whether the date has been confirmed by NCMF |
estimated_date |
string |
Astronomical estimate before confirmation |
confirmed_date |
string | null |
Actual proclaimed date after confirmation |
proclamation_ref |
string | null |
Separate proclamation number |
| Field | Type | Description |
|---|---|---|
is_part_of |
boolean |
Whether this holiday is part of a long weekend |
window_start |
string | null |
First date of the window |
window_end |
string | null |
Last date of the window |
days |
number |
Total days in the window |
leave_days_needed |
number |
Bridge leave days required (0 = natural) |
dates |
string[] |
All dates in the window |
is_working_day Response{
"_meta": { ... },
"data": {
"date": "2026-02-25",
"is_working_day": true,
"reason": "Special Working Day: EDSA People Power Revolution Anniversary",
"holiday_type": "special_working"
}
}
Add to your MCP client configuration:
{
"mcpServers": {
"ph-holidays": {
"url": "https://ph-holidays.godmode.ph/mcp"
}
}
}
curl -X POST https://ph-holidays.godmode.ph/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_upcoming_holidays",
"arguments": { "limit": 3 }
}
}'
Islamic holidays have a 2-phase lifecycle. Eid'l Fitr and Eid'l Adha appear in the main proclamation as "to be proclaimed." Dates are confirmed later via separate proclamations after NCMF recommendation. The eid_fitr_status and eid_adha_status fields in _meta signal "pending" or "confirmed". When pending, estimated_date is included but is not authoritative.
Special working days are counterintuitive. The EDSA People Power Anniversary (Feb 25, 2026) appears in the proclamation but is a working day with no premium. is_working_day returns true. holiday_type returns "special_working". Example:
is_working_day("2026-02-25") -> true, reason: "Special Working Day: EDSA..."
is_working_day does not account for weekends. Checks proclamation data only. Saturday/Sunday handling is the caller's responsibility. Rest day schedules vary by employer and are outside this server's scope.
Double holidays are rare but flagged. When 2 holidays fall on the same date, double_holiday: true is set on the record. Pay stacking rules apply but computation is not handled by this server.
Pending Eid dates should not be used for hard scheduling. When eid_confirmed is false, estimated_date is based on astronomical estimates. The actual proclaimed date may differ by 1 day.
Local holidays are out of scope. City-level holidays (Quezon City Day, Manila Day, Cebu City Charter Day, etc.) are not included. Reserved for v2 integration via psgc-mcp cross-reference.
next year data may not be available. The index only includes next year after the proclamation drops (typically October). get_upcoming_holidays crossing into the next year will stop at Dec 31 if next year is not yet loaded.
| Source | Used For |
|---|---|
| Official Gazette | Authoritative proclamation text |
| Presidential Proclamations (Malacanan) | Annual holiday list |
| DOLE Labor Advisories | Pay rule reference (informational) |
| NCMF | Eid date confirmations |
Current year: 2026 (Proclamation No. 1006, signed September 3, 2025).
| Tier | Years | Notes |
|---|---|---|
current |
2026 | Actively maintained. Eid patched when confirmed. |
next |
-- | Loaded in October when proclamation drops. |
At any given time, KV holds at most 2 years. No historical data.
scripts/
data/
2026/ proclamation-source.json
seed.ts -- full KV load for a given year
rollover.ts -- promote next to current, drop old current
patch-eid.ts -- targeted Eid date update
patch-holiday.ts -- ad hoc single holiday patch
validate.ts -- schema validation before deploy
npm run seed -- --year=2026
npm run validate -- --year=2026
npm run patch-eid -- --year=2026 --holiday=fitr --date=2026-03-21 --proclamation="No. 1234"
npm run rollover
npm install
npm run seed -- --year=2026
npm run dev
Dev server starts at http://localhost:8787. Connect your MCP client to http://localhost:8787/mcp.
Before first deploy, create the KV namespace:
npx wrangler kv namespace create HOLIDAYS_KV
Update wrangler.jsonc with the returned namespace ID.
Part of a suite of Philippine public data MCP servers:
All servers are free, public, and read-only. Data pulled from official Philippine government sources.
Found a data error or a holiday that was missed? Open an issue. Philippine holidays can change via mid-year proclamations, and the issues list is the best place to flag them.
Eid dates are confirmed separately each year. When NCMF announces the confirmed date, open an issue or PR with the proclamation reference.
Aaron Zara - Fractional CTO at Godmode Digital
For enterprise SLAs, custom integrations, or other PH data sources: -> godmode.ph
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"ph-holidays-mcp": {
"command": "npx",
"args": []
}
}
}