bible-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bible-mcpLook up John 3:16 in KJV"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bible MCP Server
An MCP server that lets any AI assistant look up Bible verses, search across translations, and compare how different versions render the same passage.
Built on the Bible-json dataset. 100+ versions across 38+ languages, all local, no API keys.
Why this exists
Most Bible APIs are rate-limited, require keys, or only cover a few versions. The actual text data is freely available, but getting it into an AI tool is still annoying.
This server fixes that. Clone the data, build the binary, point your MCP client at it. Done. Your AI can now pull up any verse in any version without hitting a remote service.
If you're building a Bible study app, doing theological research, or just want Claude to be able to look something up, this should save you some time.
What you get
Seven tools, all read-only, all running locally:
Tool | What it does |
| See available Bible versions, filterable by language |
| List all books in a given version |
| Pull a single verse |
| Get an entire chapter |
| Get a range of verses (e.g. John 3:16-21) |
| Full-text search across a version |
| Same verse side-by-side in multiple translations |
Version names are flexible. Use "KJV", "King James Bible", or even partial matches. Book names work the same way.
Quick start
1. Get the Bible data
git clone https://github.com/Amosamevor/Bible-json.git ~/Bible-json2. Install and build
git clone https://github.com/stackpwnies/bible-mcp.git
cd bible-mcp
bun install
bun run buildYou need Bun. If you don't have it, install it. You can also skip the build step and run bun run src/index.ts directly during development.
3. Add to your MCP client
Claude Code (~/.claude.json or project .mcp.json):
{
"mcpServers": {
"bible": {
"command": "/path/to/bible-mcp/bin/bible-mcp",
"env": { "BIBLE_DATA_ROOT": "/path/to/Bible-json" }
}
}
}Cursor / VS Code (.cursor/mcp.json):
{
"mcpServers": {
"bible": {
"command": "/path/to/bible-mcp/bin/bible-mcp",
"env": { "BIBLE_DATA_ROOT": "/path/to/Bible-json" }
}
}
}Without building (runs from source):
{
"mcpServers": {
"bible": {
"command": "bun",
"args": ["run", "/path/to/bible-mcp/src/index.ts"],
"env": { "BIBLE_DATA_ROOT": "/path/to/Bible-json" }
}
}
}Examples
Once connected, your AI assistant can handle things like:
"Look up John 3:16 in the KJV"
"Compare Psalm 23:1 across KJV, NIV, ESV, and NLT"
"Search for 'valley of the shadow of death' in the KJV"
"What English Bible versions are available?"
"Show me all of 1 Corinthians 13 in the NIV"
"How many books are in the King James Bible?"
Languages
English, Chinese, Spanish, French, German, Portuguese, Russian, Arabic, Hebrew, Greek, Korean, Italian, Dutch, Swedish, Finnish, Hungarian, Czech, Croatian, Albanian, Danish, Turkish, Thai, Vietnamese, Indonesian, Basque, Latin, Latvian, Maori, Swahili, Ukrainian, Armenian. Some languages have multiple versions. English has 44.
How it works
The server loads Bible JSON files on first access and keeps the 5 most recently used versions in memory. No database, no running server, no network calls. Files on disk, read when needed, cached so repeated lookups are fast.
Version resolution handles abbreviations (KJV), full names (King James Bible), and fuzzy matches. Book names work the same way.
Requirements
Bible-json dataset (cloned separately)
License
MIT
Thanks
Amosamevor/Bible-json for the Bible dataset
Model Context Protocol for the open protocol
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/stackpwnies/bible-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server