MCP server for Logos Bible Software integration. Provides tools for Bible study, sermon research, and accessing your Logos data.
- Bible Text Retrieval: Get passages with the Biblia API
- Sermon Access: Read your sermon documents from Logos Sermon Builder
- Liturgical Filtering: Filter sermons by season (Advent, Lent, Easter, etc.)
- Notes & Highlights: Access your study notes and highlights
- Logos Integration: Open passages, word studies, and Factbook in Logos
- Node.js 18+
- Logos Bible Software (Windows/macOS)
- Biblia API key (free at bibliaapi.com)
cd logos-mcp-server
npm install
npm run build
npm link # Makes logos-mcp-server available globallyAdd to your MCP client config (Claude Desktop, etc.):
{
"mcpServers": {
"logos": {
"command": "logos-mcp-server",
"env": {
"BIBLIA_API_KEY": "your-api-key-here"
}
}
}
}| Tool | Description |
|---|---|
get_bible_text |
Retrieve Bible passage text |
get_passage_context |
Get passage with surrounding verses |
search_bible |
Search Bible for terms |
get_cross_references |
Find related verses |
navigate_passage |
Open passage in Logos UI |
| Tool | Description |
|---|---|
get_user_sermons |
Read sermon documents from Logos |
Sermon Filtering Options:
get_user_sermons
title: "partial title match"
after_date: "2025-01-01" # ISO date
before_date: "2025-12-31" # ISO date
liturgical_season: "lent" # advent, christmas, epiphany, lent, holy_week, easter, pentecost, ordinary
year: 2025 # For liturgical season calculation
limit: 20 # Max results
| Tool | Description |
|---|---|
get_user_notes |
Read study notes |
get_user_highlights |
Read highlights |
get_favorites |
List bookmarks |
get_reading_progress |
Show reading plan progress |
| Tool | Description |
|---|---|
open_word_study |
Open word study in Logos |
open_factbook |
Open Factbook entry |
get_study_workflows |
List workflow templates |
- Development Guide - CLI tools, HTTP tunneling, troubleshooting
MIT