Price Per TokenPrice Per Token
JW.org Content Tools

JW.org Content Tools

by advenimus

GitHub 12 1,597 uses Remote
0

About

JW.org Content Tools provides access to Jehovah's Witnesses study materials from JW.org and wol.jw.org. It enables AI assistants to retrieve Bible scriptures with study notes and cross-references, download Christian Life and Ministry workbooks, fetch Watchtower articles, and extract video captions. Key features: - **Bible Scripture Lookup**: Search Bible books, retrieve verses from the New World Translation, and get comprehensive study content including footnotes, cross-references, and research articles from wol.jw.org - **Workbook Access**: Download and parse Christian Life and Ministry workbooks with automatic RTF-to-text conversion for current or specific monthly issues - **Watchtower Articles**: Retrieve study articles with automatic date handling (accounts for the 2-month publication offset) - **Video Captions**: Extract subtitle content and metadata from JW.org videos by video ID - **Smart Content Processing**: RTF parser reduces token usage by 70% by converting rich text to clean, readable plain text - **URL Generation**: Create clickable JW.org links for Bible verses, ranges, or chapters

README

JW MCP Server

[](https://smithery.ai/server/@advenimus/jw-mcp)

An MCP (Model Context Protocol) server that provides tools for working with JW.org content, including workbook materials, Watchtower articles, video captions, and comprehensive Bible scripture lookup with study content.

Features

This MCP server provides four main categories of tools:

📖 Bible Scripture Tools (NEW!)

  • search_bible_books: Search for Bible books by name or abbreviation to find book numbers
  • get_bible_verse: Get plain Bible verse text from wol.jw.org
  • get_verse_with_study: Get comprehensive study content including verses, study notes, cross-references, and research articles. Supports verse ranges.
  • get_bible_verse_url: Generate JW.org URLs for Bible verses, ranges, or chapters. Perfect for adding clickable scripture links to markdown documents.
  • 📚 Christian Life and Ministry Workbook Tools

  • getWorkbookLinks: Get available workbook weeks for current or specific issue
  • getWorkbookContent: Download and parse RTF content to clean plain text (70% token reduction!)
  • 📰 Watchtower Study Tools

  • getWatchtowerLinks: Get available Watchtower articles for current or specific issue
  • getWatchtowerContent: Download and parse RTF content to clean plain text (70% token reduction!)
  • 🎥 Video Caption Tools

  • get_jw_captions: Retrieves video metadata and subtitle content from JW.org by video ID
  • Smart Features

  • Automatic Date Handling: Workbook uses current month; Watchtower automatically calculates correct issue (2 months behind)
  • RTF Parsing: Automatically converts RTF files to clean, readable plain text with 70% token reduction
  • Live Web Scraping: Scripture tools fetch fresh content directly from wol.jw.org with no database required
  • What's New 🎉

    Latest Updates

  • NEW Scripture Tools: Search Bible books, get verses, and comprehensive study content with notes and research articles
  • RTF Parser: Watchtower and Workbook tools now return clean, formatted text instead of raw RTF (70% smaller!)
  • Web Scraping: Live scripture lookup from wol.jw.org with verse-specific study notes and cross-references
  • Quick Start

    Installation

    Installing via Smithery (Recommended)

    To install jw-mcp for Claude Desktop automatically via Smithery:

    On this page, click the relevant install option for your client

    Manual Local Install

    1. Clone this repository 2. Install dependencies:

       npm install
       

    Claude Desktop Setup

    If cloned manually to a folder on your system, update your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

    {
      "mcpServers": {
        "jw-mcp": {
          "command": "node",
          "args": ["/Users//jw-mcp/src/index.js"]
        }
      }
    }
    

    Replace /Users//jw-mcp with your actual project path.

    Available Tools

    📖 Bible Scripture Tools

    #### search_bible_books Search for Bible books by name, abbreviation, or number. Useful for finding the correct book number to use with other scripture tools.

    Input:

  • query (required): Search query - can be book name, abbreviation, or number
  • limit (optional): Maximum results to return (default: 10)
  • Examples:

    {
      "query": "matthew"
    }

    { "query": "1 john" }

    { "query": "gen" }

    Output:

    {
      "query": "matthew",
      "results_count": 1,
      "books": [
        {
          "number": 40,
          "name": "Matthew",
          "testament": "New Testament",
          "relevance_score": 100
        }
      ]
    }
    

    #### get_bible_verse Get plain Bible verse text from wol.jw.org. Returns just the verse text without study notes.

    Input:

  • book (required): Bible book number (1-66)
  • chapter (required): Chapter number
  • verse (required): Verse number
  • Bible Book Reference: | Range | Testament | Examples | |-------|-----------|----------| | 1-39 | Old Testament | Genesis=1, Psalms=19, Isaiah=23 | | 40-66 | New Testament | Matthew=40, John=43, Revelation=66 |

    Example:

    {
      "book": 43,
      "chapter": 3,
      "verse": 16
    }
    

    Output:

    {
      "reference": "John 3:16",
      "book_number": 43,
      "book_name": "John",
      "chapter": 3,
      "verse": 16,
      "text": "16 \"For God loved the world so much that he gave his only-begotten Son,+ so that everyone exercising faith in him might not be destroyed but have everlasting life.+"
    }
    

    #### get_bible_verse_url Generate JW.org URLs for Bible verses, vers

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81