PH Holidays MCP
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.
README
PH Holidays MCP Server
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.
Tools
| 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 |
Holiday Types
| 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.
Response Format
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.
Holiday Record
| 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 Holiday Record
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 |
Long Weekend Window
| 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"
}
}
Connect
Add to your MCP client configuration:
{
"mcpServers": {
"ph-holidays": {
"url": "https://ph-holidays.godmode.ph/mcp"
}
}
}
Quick test
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 }
}
}'
Quirks
-
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_statusandeid_adha_statusfields in_metasignal"pending"or"confirmed". When pending,estimated_dateis 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_dayreturnstrue.holiday_typereturns"special_working". Example:is_working_day("2026-02-25") -> true, reason: "Special Working Day: EDSA..." -
is_working_daydoes 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: trueis 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_confirmedisfalse,estimated_dateis 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.
-
nextyear data may not be available. The index only includes next year after the proclamation drops (typically October).get_upcoming_holidayscrossing into the next year will stop at Dec 31 if next year is not yet loaded.
Data Sources
| 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).
Year Coverage
| 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.
Data Pipeline
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
Seed a year
npm run seed -- --year=2026
Validate before deploy
npm run validate -- --year=2026
Patch Eid after NCMF confirmation
npm run patch-eid -- --year=2026 --holiday=fitr --date=2026-03-21 --proclamation="No. 1234"
Year rollover (January 1)
npm run rollover
Development
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.
Setup
Before first deploy, create the KV namespace:
npx wrangler kv namespace create HOLIDAYS_KV
Update wrangler.jsonc with the returned namespace ID.
Related Projects
Part of a suite of Philippine public data MCP servers:
- PSGC MCP - Philippine Standard Geographic Code
- LTS MCP - DHSUD License to Sell verification
- PH Holidays MCP (this repo)
- BSP Bank Directory MCP -> Coming soon
All servers are free, public, and read-only. Data pulled from official Philippine government sources.
Contributing and Issues
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.
Built by
Aaron Zara - Fractional CTO at Godmode Digital
For enterprise SLAs, custom integrations, or other PH data sources: -> godmode.ph
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.