anz-schedule-brain

anz-schedule-brain

Provides verified ANZ public holidays, school terms, and business-day calculations for all 9 regions of Australia and New Zealand, backed by data for 2026 and 2027.

Category
Visit Server

README

šŸ—“ anz-schedule-brain

The only MCP server you need for ANZ public holidays, school terms, and business-day logic — 100% verified for 2026 and 2027, production-ready.

Deploy on Railway

Live SSE endpoint: https://anz-schedule-brain-production.up.railway.app/sse GitHub: https://github.com/TyrenTemp/anz-schedule-brain


Why LLMs Hallucinate ANZ Dates

Ask any frontier model when Western Australia Day is in 2026. You'll probably get June 1 — but ask about 2025 and you'll often get the wrong answer. Ask about Adelaide Cup, Canberra Day, or Reconciliation Day and the error rate climbs above 40%.

Why? Because floating holidays computed from rules like "4th Monday of September" or "Monday nearest May 27" don't appear verbatim in training corpora. LLMs pattern-match rather than compute, and they frequently:

  • Cite the wrong King's Birthday date (WA observes it in September, not June)
  • Conflate NZ and Australian schedules (NZ has Matariki; no Australian state does)
  • Forget state-specific days entirely (SA's Proclamation Day, NT's Picnic Day)
  • Miscalculate school terms when Easter shifts the Term 1 boundary
  • Apply NZ Mondayisation rules to Australian states incorrectly

anz-schedule-brain solves this permanently by providing an MCP tool layer backed by data verified against official government gazettes for all 9 ANZ regions.


100% Verified 2026 & 2027 Coverage

Public Holidays — 9 Regions

Region Holidays State-specific highlights
šŸ‡³šŸ‡æ NZ 11 Waitangi Day, Matariki (varies by year), Labour Day (4th Mon Oct)
🟦 VIC 13 Labour Day (2nd Mon Mar), AFL Grand Final Friday, Melbourne Cup Day
🟦 NSW 12 Bank Holiday (1st Mon Aug), Labour Day (1st Mon Oct)
🟦 QLD 11 Labour Day (1st Mon May)
🟦 WA 9 WA Day (1st Mon Jun), King's Birthday (4th Mon Sep)
🟦 SA 11 Adelaide Cup (2nd Mon May), Easter Sunday, Proclamation Day
🟦 TAS 11 Eight Hours Day (2nd Mon Mar), Royal Hobart Regatta (2nd Mon Feb)
🟦 NT 11 May Day (1st Mon May), Picnic Day (1st Mon Aug)
🟦 ACT 11 Canberra Day (2nd Mon Mar), Reconciliation Day (Mon ā‰ˆ 27 May)

WA is the only mainland state without Easter Saturday as a public holiday — a common LLM mistake.

School Terms — 4 per Region

Every region has four terms for 2026 and 2027, with computed school-day counts (excluding public holidays within the term window). All 9 regions covered.


Three Tools, One Server

is_public_holiday(date, region)

// Request
{ "date": "2026-06-01", "region": "WA" }

// Response
{
  "summary": "2026-06-01 (Monday) IS a public holiday in WA: \"Western Australia Day\" [regional].",
  "data": {
    "query": { "date": "2026-06-01", "day_of_week": "Monday", "region": "WA" },
    "result": {
      "is_public_holiday": true,
      "holiday": { "name": "Western Australia Day", "date": "2026-06-01", "type": "regional", "region": "WA" }
    },
    "all_holidays_for_region": [ ... ]
  }
}

get_school_term(date, region)

// Request
{ "date": "2026-03-15", "region": "TAS" }

// Response
{
  "summary": "2026-03-15 (Sunday) is in TAS Term 1 2026 (Week 6, 19 school days remaining).",
  "data": {
    "result": {
      "in_school_term": true,
      "current_term": {
        "label": "Term 1 2026", "start": "2026-02-04", "end": "2026-04-09",
        "week_number_in_term": 6, "school_days_elapsed": 25, "school_days_remaining": 19
      }
    }
  }
}

get_next_business_day(date, region)

// Request
{ "date": "2026-04-25", "region": "NZ" }

// Response
{
  "summary": "Next business day after 2026-04-25 (Saturday) in NZ is 2026-04-27 (Monday), 2 calendar days ahead.",
  "data": {
    "input_date_status": { "is_business_day": false, "is_weekend": true, "is_public_holiday": true, "public_holiday_name": "ANZAC Day" },
    "next_business_day": { "date": "2026-04-27", "day_of_week": "Monday", "calendar_days_ahead": 2 },
    "skipped_due_to": []
  }
}

Developer Kit vs. Pay-Per-Click

Developer Kit Pay-Per-Click
Billing Flat monthly rate x402 micropayment per call
Auth Long-lived x-api-key Nevermined proxy injects key per request
Best for Teams, CI/CD, chatbots Agentic workflows, one-off integrations
Rate limit Unlimited Per-key configurable

Pass your key as an HTTP header on every SSE connection:

x-api-key: sk-anz-<your-key-here>

Quick-Start: Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "anz-schedule-brain": {
      "command": "node",
      "args": ["/path/to/anz-schedule-brain/dist/index.js"]
    }
  }
}

Restart Claude Desktop. The three tools appear automatically.

Quick-Start: Cursor

Add to .cursor/mcp.json in your project (or global ~/.cursor/mcp.json):

{
  "mcpServers": {
    "anz-schedule-brain-remote": {
      "url": "https://anz-schedule-brain-production.up.railway.app/sse",
      "headers": {
        "x-api-key": "sk-anz-<your-key-here>"
      }
    }
  }
}

Quick-Start: Local Development

git clone https://github.com/TyrenTemp/anz-schedule-brain.git
cd anz-schedule-brain
npm install
cp .env.example .env      # no key needed for local dev
npm run dev               # tsx watch, stdio transport

Self-Hosting on Railway

npm install -g @railway/cli
railway login
railway init              # link to your Railway project
railway variables set MCP_TRANSPORT=sse
railway up                # build + deploy
railway domain            # generates your public URL

Set MCP_API_KEY in Railway's environment dashboard to lock down access.


Architecture

src/
ā”œā”€ā”€ index.ts              # FastMCP server, auth middleware, transport switcher
└── data/
    ā”œā”€ā”€ holidays.ts       # ALL_PUBLIC_HOLIDAYS static object (9 regions Ɨ 2026+2027, O(1) lookup map)
    └── schoolTerms.ts    # ALL_SCHOOL_TERMS static object (9 regions Ɨ 4 terms Ɨ 2026+2027)

All holiday data is a static typed object — no database, no external API calls, no latency.


License

MIT — see LICENSE for details. Commercial use requires a valid API key. Unauthenticated production use is not permitted.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured