KARP Word Graph
Enables semantic search of the KJV Bible and personal knowledge graph for scripture study, notes, prayers, and memory verses, all running locally with no cloud dependencies.
README
KARP Word Graph
Scripture study system for Claude Desktop.
Search the Scriptures with semantic AI — find passages by meaning, not just keywords. Keep study notes, prayer journals, and memory verses in a personal knowledge graph. Everything runs locally on your machine.
"Search the scriptures; for in them ye think ye have eternal life: and they are they which testify of me." — John 5:39
What's Inside
- 31,102 verses — Complete KJV Bible, pre-loaded and ready
- 15,857 semantic embeddings — Find passages by concept, not just words
- 18 MCP tools — Read, search, study, annotate, connect
- Personal knowledge graph — Study notes, prayers, questions, insights, memory verses
- Web UI — Visual graph at
localhost:3457 - Zero cloud dependencies — All data stays on your machine
Install
- Open Claude Desktop
- Go to Settings → Extensions → Install Extension
- Select the
karp-word-graph.mcpbfile - Done. The KJV Bible is pre-loaded with semantic search ready.
No configuration needed. No data folder to pick. No setup steps.
How It Works
On first startup, the server copies the pre-loaded scripture database to:
~/.karp-word-graph/graph.db
This is where your data lives — scripture, embeddings, study notes, everything. This file is yours. Back it up, move it, keep it safe.
- Windows:
C:\Users\YourName\.karp-word-graph\graph.db - macOS:
/Users/YourName/.karp-word-graph/graph.db - Linux:
/home/YourName/.karp-word-graph/graph.db
Quick Start — What To Say To Claude
Once installed, just talk to Claude naturally:
| You say | Claude uses |
|---|---|
| "Read John 3:16" | read_scripture |
| "Read Psalm 23" | read_scripture |
| "Read Matthew 5:3-12" | read_scripture |
| "Find verses about hope in suffering" | search_scripture |
| "Find Old Testament prophecies about the messiah" | search_scripture (with OT filter) |
| "Let's study Romans 8:28 in depth" | study_passage |
| "Save a note on this passage" | remember (type: study_note) |
| "Log a prayer about this" | remember (type: prayer) |
| "I want to memorize this verse" | remember (type: memory_verse) |
| "What have I been studying lately?" | study_history |
| "Find my notes about sovereignty" | recall |
| "How many books are in the Bible?" | list_books |
| "Is everything loaded correctly?" | scripture_status |
Dedicated Study Mode — Claude Projects
Out of the box, Claude treats Word Graph as one set of tools among many. To make Scripture study the focus, create a Claude Project. This gives Claude a persistent set of instructions so every conversation opens in study mode — it will check your history, remember your journey, and meet you where you left off.
Setup (one time, takes 30 seconds)
- Create a new Project — click Projects → Create Project. Give it a name like
KARP Word GraphorBible Study. In the "What do you want to achieve?" box, write a short note likeBible StudyorScripture research. - Click Create.
- Add project instructions — inside the project, click the + Project instructions button and paste the example prompt below.
- Say hello! Start a new conversation inside the project and greet Claude. It will check your study history and pick up right where you left off.
Example Project Prompt
Copy and paste this into your project instructions:
You are a Bible study companion. KARP Word Graph is your primary toolset
— the complete KJV Bible with semantic search and a personal knowledge graph.
At the start of each conversation, check study_history to pick up where
the user left off. If the graph is empty, welcome them and ask what
brings them to the Word today.
Match the user's level from their language. Scripture first, commentary
second. Let the text breathe.
Make It Yours
The prompt above is just a starting point. Add a line to customise the experience:
- "Keep the pace slow and devotional. Ask what stands out to me before commenting."
- "I'm a seminary student. Go deep — original context, literary structure, cross-testament echoes."
- "I'm preparing a sermon series on Romans. Help me find illustrations."
- "I'm brand new to the Bible. Start simple and guide me gently."
Tools Reference
Scripture Tools (7)
| Tool | What it does |
|---|---|
read_scripture |
Read verses by reference — "John 3:16", "Genesis 1:1-5", "Psalm 23" |
search_scripture |
Semantic search — finds passages by meaning across all 31,102 verses |
study_passage |
Deep study — verse text, surrounding context, your linked notes |
study_history |
Review your study activity — notes, prayers, questions, memory verses |
scripture_status |
Health check — verse counts, embedding coverage, study stats |
list_books |
All 66 books with chapter/verse counts. Filter by OT or NT |
re_embed_scriptures |
Rebuild passage embeddings (only needed if you modify the database) |
Knowledge Graph Tools (11)
| Tool | What it does |
|---|---|
remember |
Save study notes, prayers, insights, questions, cross-references, memory verses |
recall |
Semantic search across your personal notes and study history |
search |
Keyword search across your notes |
list |
Browse notes by type, date, or importance |
update |
Edit an existing note |
connect |
Link two notes together (e.g. prayer "inspired_by" study note) |
forget |
Delete a note |
kg_status |
Graph health — node counts, DB size, embedding coverage |
propose_node_type |
Create custom note types (approved in web UI) |
snapshot |
Backup your entire database |
re_embed |
Rebuild knowledge graph embeddings |
Study Note Types
| Type | Icon | Use for |
|---|---|---|
study_note |
📝 | Personal annotations on passages |
prayer |
🙏 | Prayer journal entries linked to scripture |
teaching |
📖 | Sermon notes, Bible study group notes |
cross_ref |
🔗 | Connections you discover between passages |
question |
❓ | Questions that arise during study |
memory_verse |
⭐ | Verses you're memorizing (with progress tracking) |
Web UI
Open http://localhost:3457 in your browser to see your knowledge graph visually. Protected by passphrase on first visit.
The port can be changed during installation if 3457 is already in use.
Troubleshooting
"Scripture not loaded" or 0 verses showing
The pre-loaded database may not have copied correctly. Check if the file exists:
~/.karp-word-graph/graph.db
If the file is missing or very small (< 1MB), the bundled database didn't copy. You can manually copy it:
- Find the
.mcpbbundle's extracted location (check Claude Desktop settings) - Look for
data/graph.dbinside it - Copy it to
~/.karp-word-graph/graph.db
Or re-ingest from source:
cd path/to/karp-word-graph
npm run ingest
# Then ask Claude to run re_embed_scriptures
Port conflict (localhost:3457 not loading)
Another server is using port 3457. Change it in Claude Desktop extension settings — look for the "Web UI Port" option.
Web UI shows Graph Lite instead of Word Graph
Graph Lite (port 3456) and Word Graph (port 3457) are separate servers. Make sure you're visiting the right port. If Graph Lite is disabled but still running, restart Claude Desktop.
Database location
All your data is in a single file:
~/.karp-word-graph/graph.db
To back up: copy this file somewhere safe.
To reset: delete this file and restart — the pre-loaded Bible will be copied fresh.
To move: copy the file to the new location and set DATA_PATH environment variable.
Technical Details
- Translation: King James Version (public domain)
- Source: aruljohn/Bible-kjv (MIT license)
- Embedding model: BGE-small-en-v1.5 via transformers.js (384 dimensions, ONNX runtime)
- Embedding strategy: 3-verse sliding windows with 1-verse overlap (~15,857 passages)
- Database: SQLite via sql.js (no native dependencies)
- Server: Node.js MCP server + Express web UI
- Data path:
~/.karp-word-graph/ - Web UI port: 3457 (configurable)
Reference Format
The server accepts multiple reference formats:
| Format | Example |
|---|---|
| Natural | "John 3:16", "Genesis 1:1-5", "Psalm 23" |
| Abbreviated | "JHN 3:16", "GEN 1:1-5", "PSA 23" |
| Internal | "JHN.3.16", "GEN.1.1-5", "PSA.23" |
| Book + params | { "book": "PSA", "chapter": 23 } |
Book abbreviations follow the USFM standard (GEN, EXO, LEV, NUM, DEU, JOS, JDG, RUT, 1SA, 2SA, 1KI, 2KI, 1CH, 2CH, EZR, NEH, EST, JOB, PSA, PRO, ECC, SOS, ISA, JER, LAM, EZK, DAN, HOS, JOL, AMO, OBA, JON, MIC, NAH, HAB, ZEP, HAG, ZEC, MAL, MAT, MRK, LUK, JHN, ACT, ROM, 1CO, 2CO, GAL, EPH, PHP, COL, 1TH, 2TH, 1TI, 2TI, TIT, PHM, HEB, JAS, 1PE, 2PE, 1JN, 2JN, 3JN, JUD, REV).
Built by SoulDriver — Powered by KARP Graph Lite foundation.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。