BibleMCP
Bible MCP 服务器
一个 MCP(模型上下文协议)服务器,让 AI 助手能够从 MyBible 格式的 SQLite 数据库中获取圣经经文、段落和章节。
功能
list_bibles — 列出所有已安装的圣经译本
list_books — 列出某个译本中的所有书卷
get_passage — 获取单节经文或经文范围(例如:约翰福音 3:16,罗马书 8:1-3)
get_chapter — 获取包含章节标题的完整章节
Related MCP server: SolaGuard MCP Server
设置
安装依赖
npm install添加圣经译本
将 MyBible 格式的 .SQLite3 文件放入 Bibles/ 目录中,每个译本一个文件夹:
Bibles/
├── NIV'11/
│ ├── NIV'11.SQLite3
│ └── NIV'11.commentaries.SQLite3
├── KJV/
│ └── KJV.SQLite3
└── ...每个子文件夹必须至少包含一个 *.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"]
}
}
}配置
环境变量 | 默认值 | 描述 |
|
| 包含圣经译本文件夹的目录路径 |
开发
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 compilingMyBible 格式
此服务器读取标准的 MyBible SQLite 模式:
info 表 — 元数据(描述、语言)
books 表 — 书卷编号、短/长名称(66 卷书,编号 10–730)
verses 表 —
book_number, chapter, verse, text(文本可能包含 HTML 标记)stories 表 — 章节标题 / 分段标题
introductions 表 — 书卷介绍
经文文本以干净的纯文本形式返回,所有 HTML 标记均被剥离。
许可证
此服务器代码根据 MIT 许可证授权。请参阅 LICENSE。
Bibles/ 目录中的圣经译本模块不受此许可证覆盖——它们受各自版权保护,且不随此仓库分发。
Maintenance
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
- FlicenseAqualityDmaintenanceEnables 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.17
- AlicenseAqualityDmaintenanceProvides 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
- Alicense-quality-maintenanceProvides 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
- Flicense-qualityDmaintenanceEnables AI assistants to look up Bible verses, search across translations, and compare different versions locally without API keys.
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…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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