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

bible-ko-mcp

v0.2.2

Published

MCP server for Korean Bible (bskorea.or.kr)

Downloads

563

Readme

Bible Korean MCP Server

CI NPM Version License: MIT

MCP (Model Context Protocol) server for accessing the Korean Bible from bskorea.or.kr.

Features:

  • ⚡️ In-memory caching with 30-min TTL for fast repeated requests
  • 🛡️ Robust error handling with try/catch and graceful fallbacks
  • Input validation with Zod schemas
  • 🏥 Health check tool for monitoring
  • 📚 All 66 books with 5 translations supported
  • 🔍 Full-text search across entire Bible

Node.js Version

Requires Node.js 20+

Features

This MCP server provides tools to:

  • Get complete chapters from the Korean Bible
  • Retrieve specific verses or verse ranges
  • Search for verses containing keywords
  • List all available books
  • Compare verses across different Korean translations

Installation

Install globally via npm:

npm install -g bible-ko-mcp

Or use directly with npx (no installation required):

npx -y bible-ko-mcp

Available Tools

1. get-chapter

Get all verses from a specific chapter.

Parameters:

  • book (string, required): Book name in English, Korean, or book code
    • Examples: "Genesis", "창세기", "gen"
  • chapter (number, required): Chapter number
  • version (string, optional): Bible translation version (default: "GAE")
    • Options: "GAE", "GAE1", "NIR", "KOR", "CEV"

Example:

{
  "book": "Genesis",
  "chapter": 1,
  "version": "GAE"
}

2. get-verses

Get specific verse(s) from a chapter.

Parameters:

  • book (string, required): Book name or code
  • chapter (number, required): Chapter number
  • verseStart (number, required): Starting verse number
  • verseEnd (number, optional): Ending verse number (defaults to verseStart)
  • version (string, optional): Bible translation version (default: "GAE")

Example:

{
  "book": "John",
  "chapter": 3,
  "verseStart": 16,
  "verseEnd": 17,
  "version": "GAE"
}

3. search-bible

Search for verses containing specific keywords.

Parameters:

  • query (string, required): Search query in Korean or English
  • version (string, optional): Bible translation version (default: "GAE")

Note: Search covers all 66 books of the Bible with fallback results.

Example:

{
  "query": "사랑",
  "version": "GAE"
}

4. list-books

List all available books in the Bible.

Parameters:

  • testament (string, optional): Filter by testament ("OT" or "NT")

Example:

{
  "testament": "NT"
}

5. compare-translations

Compare a verse across different Korean translations.

Parameters:

  • book (string, required): Book name or code
  • chapter (number, required): Chapter number
  • verse (number, required): Verse number
  • versions (array, optional): Array of version codes to compare (default: all versions)

Example:

{
  "book": "John",
  "chapter": 3,
  "verse": 16,
  "versions": ["GAE", "NIR", "KOR"]
}

Bible Translations

  • GAE: 개역개정 (Revised Korean Standard Version)
  • GAE1: 개역한글 (Korean Revised Version)
  • NIR: 새번역성경 (New Korean Revised Version)
  • KOR: 공동번역 (Common Translation)
  • CEV: CEV (Contemporary English Version)

Book Codes

Old Testament

  • Genesis (창세기): gen
  • Exodus (출애굽기): exo
  • Leviticus (레위기): lev
  • Numbers (민수기): num
  • Deuteronomy (신명기): deu
  • ... (see full list in source code)

New Testament

  • Matthew (마태복음): mat
  • Mark (마가복음): mrk
  • Luke (누가복음): luk
  • John (요한복음): jhn
  • Acts (사도행전): act
  • ... (see full list in source code)

Usage with Claude Desktop

Add to your Claude Desktop configuration:

macOS

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

{
  "mcpServers": {
    "bible-ko": {
      "command": "npx",
      "args": [
        "-y",
        "bible-ko-mcp"
      ]
    }
  }
}

Windows

Edit %APPDATA%\Claude\claude_desktop_config.json with the same configuration above.

After adding the configuration, restart Claude Desktop completely.

Development

For local development:

# Clone the repository
git clone https://github.com/oksure/bible-ko-mcp.git
cd bible-ko-mcp

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Watch mode (auto-rebuild on changes)
npm run watch

# Run locally
npm start

Local Development with Claude Desktop

For testing local changes, use this configuration:

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

Remember to run npm run build after making changes.

Technical Details

  • Built with TypeScript and the MCP SDK
  • Uses cheerio for HTML parsing
  • Fetches data from bskorea.or.kr
  • Supports all 66 books of the Bible
  • Handles Korean and English book names

Use Cases

Sermon Preparation

Weekly Sunday sermon with the Beatitudes

Ask Claude: "Give me Matthew 5:3-12 in Korean (GAE) with each beatitude on a separate line for my sermon outline."

Tool: get-verses
Book: Matthew, Chapter: 5, Start: 3, End: 12

Good Friday — Messianic prophecy from Isaiah

Tool: get-chapter
Book: Isaiah, Chapter: 53, Version: GAE

Christmas Eve sermon — The nativity narrative

Tool: get-verses
Book: Luke, Chapter: 2, Start: 1, End: 20

Easter Sunday — The resurrection account

Tool: get-chapter
Book: John, Chapter: 20, Version: GAE

Wedding homily — The Love Chapter

Tool: get-chapter
Book: 1 Corinthians, Chapter: 13, Version: GAE

Missions Sunday — The Great Commission

Tool: get-verses
Book: Matthew, Chapter: 28, Start: 18, End: 20

Bible Study Groups

Comparing John 3:16 across translations for group discussion

Tool: compare-translations
Book: John, Chapter: 3, Verse: 16
Versions: ["GAE", "GAE1", "NIR", "KOR"]

Topical study: Living Faith (야고보서의 믿음)

Tool: get-verses
Book: James, Chapter: 2, Start: 14, End: 26

Fruit of the Spirit study

Tool: get-verses
Book: Galatians, Chapter: 5, Start: 22, End: 23

Hebrews 11 "Faith Hall of Fame" — full chapter

Tool: get-chapter
Book: Hebrews, Chapter: 11, Version: GAE

Spiritual warfare — full armor of God passage

Tool: get-verses
Book: Ephesians, Chapter: 6, Start: 10, End: 18

Personal Devotional

Psalm 23 for comfort (funeral message, hospital visits)

Tool: get-chapter
Book: Psalms, Chapter: 23, Version: GAE

Romans 8:28-39 — Assurance of God's love

Tool: get-verses
Book: Romans, Chapter: 8, Start: 28, End: 39

Daily scripture memory verse

Tool: get-verses
Book: Philippians, Chapter: 4, Start: 13, End: 13

Advent devotional — The Word became flesh

Tool: get-verses
Book: John, Chapter: 1, Start: 1, End: 14

Korean Language Look-up

All tools accept Korean book names, making it natural to reference Scripture in Korean:

Tool: get-chapter
Book: 시편 (Psalms), Chapter: 23
Tool: get-verses
Book: 잠언 (Proverbs), Chapter: 3, Start: 5, End: 6
Tool: search-bible
Query: 하나님의 사랑 (God's love)

Notes

  • The HTML parsing may need adjustment based on website updates
  • Search functionality is limited for demo purposes to avoid excessive requests
  • Some translations may not be available for all books

Publishing

This package is automatically published to NPM when a new GitHub release is created. See PUBLISHING.md for detailed instructions.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT