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

turath-mcp-server

v1.2.0

Published

MCP server for accessing classical Arabic/Islamic texts from turath.io

Readme

Turath MCP Server 📚

An MCP (Model Context Protocol) server that bridges classical Arabic/Islamic texts from turath.io with AI assistants like Claude.

License: MIT

✨ Features

  • 🔍 Search - Full-text search across thousands of classical Arabic books
  • 📖 Read Pages - Retrieve specific pages from any book
  • 📋 Book Info - Get metadata, table of contents, and chapter indices
  • 👤 Author Details - Biographical information about scholars and authors
  • 📁 Categories - Browse books by subject (Hadith, Fiqh, Tafsir, etc.)
  • ⚡ Caching - In-memory cache for faster repeated queries

🔒 How it Works & Privacy

This server uses stdio (standard input/output) for communication with Claude Desktop:

  • 100% Local - The server runs entirely on your machine
  • No Data Storage - Your queries are not logged or stored
  • Direct Connection - Data flows directly between Claude and turath.io
  • Open Source - Full transparency in how your data is handled
┌─────────────┐     stdio      ┌──────────────────┐     HTTPS     ┌────────────┐
│   Claude    │ ◄────────────► │  turath-mcp-srv  │ ◄───────────► │ turath.io  │
└─────────────┘                └──────────────────┘               └────────────┘

🛠️ Installation

# Clone or create the project
mkdir turath-mcp-server && cd turath-mcp-server

# Initialize and install dependencies
npm init -y
npm install @modelcontextprotocol/sdk turath-sdk zod
npm install -D typescript tsx @types/node

🚀 Usage with Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "turath": {
      "command": "npx",
      "args": ["-y", "tsx", "/path/to/turath-mcp-server/index.ts"],
      "cwd": "/path/to/turath-mcp-server"
    }
  }
}

🔧 Available Tools

| Tool | Description | |------|-------------| | search_library | Search for books, authors, or topics | | get_book_info | Get book metadata and table of contents | | get_author_details | Get author biography and book list | | read_page | Read content from a specific page |

📂 Available Resources

| Resource URI | Description | |--------------|-------------| | turath://categories | List of book categories with IDs |

📚 Common Category IDs

| ID | Category (Arabic) | Category (English) | |----|-------------------|-------------------| | 1 | العقيدة | Creed | | 3 | التفسير | Tafsir | | 6 | كتب السنة | Hadith Books | | 7 | شروح الحديث | Hadith Commentaries | | 16 | الفقه الشافعي | Shafi'i Fiqh | | 23 | السيرة | Seerah |

💡 Example Prompts for Claude

"ابحث في كتب الحديث عن أحاديث النية"

"Find books by Ibn Hajar al-Asqalani and get his biography"

"Read page 50 from Sahih al-Bukhari"

"What does Imam al-Nawawi say about the conditions of prayer?"

🏗️ Development

# Run the server locally
npx tsx index.ts

# The server uses stdio - it will wait for JSON-RPC input

📄 License

MIT License - Feel free to use and modify.

🙏 Acknowledgments