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

@kresnayulianta/muslim-mcp

v0.0.1

Published

A [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server for Islamic tools — prayer schedules, Quran reader, Hijri calendar, tadarus tracker, and Islamic quotes. Built for Indonesia (Kemenag RI method via Aladhan API).

Readme

@kresnayulianta/muslim-mcp

A Model Context Protocol (MCP) server for Islamic tools — prayer schedules, Quran reader, Hijri calendar, tadarus tracker, and Islamic quotes. Built for Indonesia (Kemenag RI method via Aladhan API).

Features

| Tool | Description | |------|-------------| | search-prayer-location | Search province/city for prayer schedule queries | | get-prayer-schedule | Daily prayer schedule for a city and date | | get-prayer-schedule-month | Monthly prayer schedule | | get-next-prayer | Next upcoming prayer and countdown | | get-optional-prayer-times | Dhuha, Tahajjud, and Witir times | | get-fasting-context | Fasting context (Ramadan, Senin/Kamis, etc.) | | generate-daily-checklist | Daily ibadah checklist | | evaluate-reminder-needs | Evaluate whether a prayer reminder should trigger | | get-islamic-quote | Daily or topic-based Islamic quote (Quran/Hadith) | | list-islamic-quote-topics | List available quote topics | | get-hijri-date | Get Hijri date for today or convert from Gregorian | | hijri-to-gregorian | Convert Hijri date to Gregorian | | get-hijri-calendar | Full month calendar with both date formats | | get-islamic-events | All Islamic holidays for a Hijri year | | list-surahs | List all 114 Quranic surahs | | get-surah | Get a surah with Arabic text and Indonesian translation | | get-ayah | Get a specific ayah | | get-juz | Get all ayahs in a juz | | search-quran | Search the Quran by keyword | | get-daily-ayah | Get today's ayah (deterministic by date) | | log-tadarus | Log Quran reading progress | | get-tadarus-progress | View tadarus progress and estimated khatam date | | set-tadarus-target | Set khatam target date | | reset-tadarus | Reset tadarus tracker |

Usage

npx — stdio mode

npx -y @kresnayulianta/muslim-mcp

Usage with Claude

No API keys or authentication required — just add to your client config.

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "muslim": {
      "command": "npx",
      "args": ["-y", "@kresnayulianta/muslim-mcp"]
    }
  }
}

Cursor

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

{
  "mcpServers": {
    "muslim": {
      "command": "npx",
      "args": ["-y", "@kresnayulianta/muslim-mcp"]
    }
  }
}

Claude Code

claude mcp add muslim -- npx -y @kresnayulianta/muslim-mcp

HTTP server mode

npx -y @kresnayulianta/muslim-mcp --http --port 3002

HTTP Authentication

Set MCP_API_KEY environment variable to lock the server:

Authorization: Bearer your-api-key

How to Use

Once connected to Claude Desktop or any MCP-compatible client, you can ask Claude questions about prayer times, the Quran, Hijri calendar, and daily ibadah.

Prayer Times

"Jadwal sholat hari ini di Jakarta"
"Kapan sholat Ashar di Bandung besok?"
"Tampilkan jadwal sholat bulan ini untuk Surabaya"
"Sholat apa yang selanjutnya dan berapa menit lagi?"
"Jam berapa Dhuha dan Tahajjud malam ini?"

Fasting & Daily Checklist

"Apakah hari ini ada puasa sunnah?"
"Buatkan checklist ibadah harian saya untuk hari ini"
"Apakah perlu kirimkan reminder sholat sekarang?"

Quran

"Tampilkan Surah Al-Fatihah beserta terjemahannya"
"Cari ayat Quran tentang sabar"
"Ayat berapa hari ini? (daily ayah)"
"Tampilkan semua surah di Juz 30"
"Bacakan ayat Al-Baqarah 255 (Ayat Kursi)"

Hijri Calendar & Islamic Events

"Tanggal Hijriyah hari ini berapa?"
"Konversi 17 Agustus 2025 ke Hijriyah"
"Tampilkan kalender Hijriyah bulan ini"
"Apa saja hari besar Islam tahun 1446 H?"

Tadarus Tracker

"Catat tadarus saya hari ini: Surah Al-Baqarah sampai ayat 50"
"Berapa progress tadarus saya dan kapan khatam?"
"Set target khatam Al-Quran sebelum akhir Ramadan"

Islamic Quotes

"Berikan quote Islam tentang ikhlas"
"Quote Al-Quran untuk memulai hari"
"Tampilkan hadith tentang sholat"

Environment Variables

MCP_API_KEY=your-secret       # Optional: lock server with API key
MCP_HTTP_PORT=3002            # HTTP server port (default: 3002)
DEFAULT_TIMEZONE=Asia/Jakarta # Timezone (default: Asia/Jakarta)

Data Sources

All data comes from free public APIs — no API keys required:

Tadarus Persistence

When running via Docker, mount a volume for tadarus data to persist across restarts:

docker run -p 3002:3002 \
  -v muslim-mcp-data:/app/data \
  ghcr.io/kresnayulianta/muslim-mcp

License

MIT