Skip to main content
Glama

Bible MCP Server

AIアシスタントがMyBible形式のSQLiteデータベースから聖書の節、箇所、章を取得できるようにするMCP(Model Context Protocol)サーバーです。

機能

  • list_bibles — インストールされているすべての聖書翻訳をリスト表示

  • list_books — 翻訳内のすべての書をリスト表示

  • get_passage — 単一の節または節範囲を取得(例:ヨハネ3:16、ローマ8:1-3)

  • get_chapter — 章全体をセクションタイトル付きで取得

Related MCP server: SolaGuard MCP Server

セットアップ

依存関係のインストール

npm install

聖書翻訳の追加

MyBibleの.SQLite3ファイルをBibles/ディレクトリに配置し、翻訳ごとに1つのフォルダを作成します:

Bibles/
├── NIV'11/
│   ├── NIV'11.SQLite3
│   └── NIV'11.commentaries.SQLite3
├── KJV/
│   └── KJV.SQLite3
└── ...

各サブフォルダには、少なくとも1つの*.SQLite3ファイル(メインの聖書データベース)が含まれている必要があります。解説データベース(*.commentaries.SQLite3)はオプションです。フォルダ名がツール呼び出しで使用される翻訳IDになります。

AIクライアントでの設定

MCPクライアント設定に追加:

{
  "mcpServers": {
    "bible": {
      "command": "node",
      "args": ["path/to/BibleMCP/dist/index.js"]
    }
  }
}

開発用:

{
  "mcpServers": {
    "bible": {
      "command": "npx",
      "args": ["tsx", "path/to/BibleMCP/src/index.ts"]
    }
  }
}

設定

環境変数

デフォルト

説明

BIBLES_DIR

./Bibles

聖書翻訳フォルダを含むディレクトリへのパス

開発

npm run build      # Compile TypeScript to dist/
npm run dev        # Run server in dev mode (tsx)
npm test           # Run all tests
npm run test:watch # Run tests in watch mode
npm run typecheck  # Type-check without compiling

MyBible形式

このサーバーは標準のMyBible SQLiteスキーマを読み取ります:

  • infoテーブル — メタデータ(説明、言語)

  • booksテーブル — 書番号、短い/長い名称(66書、番号10~730)

  • versesテーブル — book_number, chapter, verse, text(テキストにはHTMLマークアップが含まれる場合があります)

  • storiesテーブル — セクションタイトル/ペリコーペ

  • introductionsテーブル — 書のイントロダクション

節テキストはすべてのHTMLマークアップが除去されたクリーンなプレーンテキストとして返されます。

ライセンス

このサーバーコードはMITライセンスの下で提供されています。LICENSEを参照してください。

Bibles/ディレクトリ内の聖書翻訳モジュールはこのライセンスの対象ではありません。それらはそれぞれの著作権の対象であり、このリポジトリと共に配布されるものではありません。

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to retrieve Bible passages from multiple translations (ESV, NIV, KJV, NASB, NKJV, NLT, AMP, MSG). Supports querying single or multiple passages and provides both MCP protocol integration and REST API endpoints.
    1
    7
  • A
    license
    A
    quality
    D
    maintenance
    Provides comprehensive Biblical research tools including scripture lookup, interlinear Greek/Hebrew data, and Strong's concordance within a Protestant theological framework. It enables AI applications to perform full-text biblical searches, topical studies, and cross-referencing using authoritative theological data.
    MIT
  • A
    license
    -
    quality
    -
    maintenance
    Provides structured access to Scripture through the BibleBridge API, enabling semantic search, contextual verse retrieval, and cross-reference analysis. It supports natural language reference normalization and comparative theological exploration across different passages.
    1
  • F
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to look up Bible verses, search across translations, and compare different versions locally without API keys.

View all related MCP servers

Related MCP Connectors

  • AI-powered biblical research tools — lexicons, morphology, manuscripts, and more.

  • Bible corpus MCP server: scripture, Greek/Hebrew interlinear data, cross-refs, semantic search.

  • Explore, query, and inspect SQLite databases with ease. List tables, preview results, and view det…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/lindsaysperring/BibleMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server