An MCP (Model Context Protocol) server that provides powerful search capabilities for Jewish texts and literature. This server enables Large Language Models to search and reference Jewish texts through a standardized interface.
- Full-text search across Jewish texts and literature
- Advanced query syntax support:
- Field-specific search (text:term, reference:term, topics:term)
- Boolean operators (AND, OR)
- Required/excluded terms (+term, -term)
- Phrase search ('exact phrase')
- Wildcards (?, *)
- Relevance-based scoring
- Rich search results including references, topics, and highlighted excerpts
Requires Python 3.10 or higher.
git clone https://github.com/sivan22/mcp-otzaria-server.git
cd mcp-otzaria-server
download and extract the index from here
pip install .
The server can be run directly:
uv --directory path/to/directory run jewish_library
Or through an MCP client that supports the Model Context Protocol. for claude desktop app and cline you should use the following config:
{
"mcpServers": {
"jewish_library": {
"command": "uv",
"args": [
"--directory",
"your/path/to/directory",
"run",
"jewish_library"
],
"env": {
"PYTHONIOENCODING": "utf-8"
}
}
}
}
The server provides a single tool through the MCP interface:
Performs a full-text search across the Jewish library with advanced query capabilities.
Example query formats:
# Basic search
"maimonides on prayer"
# Field-specific search
text:"love your neighbor" AND topics:mitzvot
# Required terms
+shabbat +candles
# Phrase search with topic filter
"four species" AND topics:sukkot
# Wildcard search
pray* AND reference:psalms
Search results include:
- Reference information
- Relevant topics
- Highlighted excerpts showing query matches
- Relevance score
This project uses:
- Python >= 3.10
- MCP SDK >= 1.1.1
- Tantivy search engine
MIT License