npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aaronzara/ph-holidays-mcp

v1.0.0

Published

MCP server providing Philippine national holiday data to AI agents. Data sourced from official presidential proclamations.

Readme

PH Holidays MCP Server

Cloudflare Workers TypeScript License: MIT

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

  1. 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.

  2. 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..."
  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. 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.

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