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

@rudyah/liturgical-calendar-mcp

v1.0.0

Published

Model Context Protocol server providing access to Roman Catholic Liturgical Calendar data

Readme

Liturgical Calendar MCP Server (TypeScript)

MCP Compatible

A Model Context Protocol (MCP) server written in TypeScript that provides access to the Roman Catholic Liturgical Calendar API.

Note: Looking for the Python version? See liturgical-calendar-mcp (Python)

Why TypeScript?

This is a TypeScript rewrite of the Python version with these advantages:

  • Native MCP SDK: First-class TypeScript support from the official MCP SDK
  • Smaller container: Node.js Alpine image is ~50MB vs Python ~100MB+
  • Native async/await: Clean promise-based HTTP requests
  • Type safety: Full TypeScript types for better IDE support and error catching
  • Simple dependencies: Only needs @modelcontextprotocol/sdk (built-in fetch)

Features

  • get_general_calendar - General Roman Calendar for any year (1970-9999)
  • get_national_calendar - National calendars (IT, US, NL, VA, CA, etc.)
  • get_diocesan_calendar - Diocesan calendars with local celebrations
  • list_available_calendars - Discover all available calendars
  • get_liturgical_events - All possible liturgical events

Architecture

This server follows a clean modular architecture with separation of concerns:

Architecture Diagram

For detailed architecture documentation, see ARCHITECTURE.md.

Prerequisites

  • Node.js 18+ (20+ recommended)
  • Docker Desktop with MCP Toolkit (for Docker deployment)
  • No authentication required

Installation

Option 1: Local Development

# Clone the repository
git clone https://github.com/CatholicOS/liturgical-calendar-mcp.git
cd liturgical-calendar-mcp

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run the server
npm start

Option 2: Docker

# Build the Docker image
docker build -f Dockerfile.ts -t liturgical-calendar-mcp-ts:latest .

# Run with Docker
docker run -i liturgical-calendar-mcp-ts:latest

Configuration for MCP Clients

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "liturgical-calendar": {
      "command": "node",
      "args": ["/absolute/path/to/liturgical-calendar-mcp/build/index.js"]
    }
  }
}

Docker MCP Toolkit

Edit ~/.docker/mcp/catalogs/docker-mcp.yaml:

  litcal-ts:
    description: "Access Roman Catholic Liturgical Calendar data (TypeScript)"
    title: "Liturgical Calendar (TS)"
    type: server
    dateAdded: "2025-10-22T00:00:00Z"
    image: liturgical-calendar-mcp-ts:latest
    tools:
      - name: get_general_calendar
      - name: get_national_calendar
      - name: get_diocesan_calendar
      - name: list_available_calendars
      - name: get_liturgical_events
    metadata:
      category: integration
      tags:
        - catholic
        - liturgy
        - calendar
      license: MIT

Development

# Watch mode for development
npm run watch

# Build for production
npm run build

# Run tests (if added)
npm test

Project Structure

.
├── src/
│   └── index.ts          # Main MCP server implementation
├── build/                # Compiled JavaScript (generated)
├── package.json          # Dependencies and scripts
├── tsconfig.json         # TypeScript configuration
├── Dockerfile.ts         # Docker build file
└── README-typescript.md  # This file

Comparison with Python Version

| Feature | Python | TypeScript | |---------|--------|------------| | Runtime size | ~100MB | ~50MB | | Dependencies | 2 (mcp, httpx) | 1 (@modelcontextprotocol/sdk) | | HTTP client | httpx (external) | fetch (built-in) | | Type safety | Optional (mypy) | Built-in | | Async model | asyncio | Promises/async-await | | MCP SDK | FastMCP wrapper | Official SDK |

API Reference

get_general_calendar

{
  year?: string,    // 1970-9999 (default: current year)
  locale?: string   // en, es, it, fr, etc. (default: en)
}

get_national_calendar

{
  nation: string,   // IT, US, NL, VA, CA (required)
  year?: string,    // 1970-9999 (default: current year)
  locale?: string   // en, es, it, fr, etc. (default: en)
}

get_diocesan_calendar

{
  diocese: string,  // ROME-IT, BOSTON-US (required)
  year?: string,    // 1970-9999 (default: current year)
  locale?: string   // en, es, it, fr, etc. (default: en)
}

list_available_calendars

{
  // No parameters required
}

Returns all available national and diocesan calendars with their locales.

get_liturgical_events

{
  calendarType?: string,  // "general", "national", or "diocesan" (default: general)
  nation?: string,        // Required if calendarType is "national"
  diocese?: string        // Required if calendarType is "diocesan"
}

Retrieves all possible liturgical events for a calendar type.

License

MIT

Credits

  • Liturgical Calendar API by Rev. John R. D'Orazio
  • MCP Protocol by Anthropic