AI

ai-Bible

Created 5 months ago

AI project for interpreting and understanding biblical text.

development documentation public AI bible

What is ai-Bible?

Search the bible reliably and repeatably [ai-Bible Labs](https://ai-bible.com)

Documentation

ai-Bible

mcp-server for Claude etc

The mcp-server contains the current implementation of a server for repeatedly and reliably retrieving bible verses when using LLMs. Claude Desktop can be configured to use the mcp-server.stdio.js file built in the build folder of this project as an mcp-server. See the README.md in that subfolder for detailed information.

docker-container for completions

The docker container wraps the mcp server up using mcpo in order to turn it into server supporting the openai completions api. Run these commands from the project root after building the mcp-server.

docker build -f completions/Dockerfile -t mcp-server .
docker run -p 8002:8000 mcp-server

You can check it is running by checking the swagger api page:

http://localhost:8002/docs

Try the get-verse api with parameters:

{ "reference": ["Gen.1.1", "Gen.2.1"], "language": "english" }

One way to access the completions api is via Open WebUI and then you can do everything locally with a LLM via Ollama with a model such as llama 3.1 8b, see:

https://docs.openwebui.com/getting-started/quick-start/

Server Config

{
  "mcpServers": {
    "ai-bible-server": {
      "command": "npx",
      "args": [
        "ai-bible"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: No
Global: No
Official: No

Project Info

Hosted Featured
Created At: Jul 02, 2025
Updated At: Aug 07, 2025
Author: AdbC99
Category: community
License: GNU GPL v3 Licence
Tags:
development documentation public