Sefaria MCP Server
OfficialProvides tools to access and search the Sefaria Jewish library, including retrieving texts, searching, calendar info, cross-references, and manuscript images via the Sefaria API.
Click on "Deploy 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., "@Sefaria MCP ServerWhat is today's Hebrew date?"
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.
Sefaria MCP Server
A modern MCP (Model Context Protocol) server for accessing the Jewish library via the Sefaria API.
What does this server do?
This server exposes the Sefaria Jewish library as a set of 14 MCP tools, allowing LLMs and other MCP clients to:
Primary Tools:
get_text - Retrieve Jewish texts by reference (e.g., "Genesis 1:1")
text_search - Search across the entire Jewish library
get_current_calendar - Get situational Jewish calendar information. Accepts
diaspora(truefor Diaspora,falsefor Israel) for weeks when Torah reading schedules diverge.
Core Tools:
get_links_between_texts - Find cross-references and connections between texts
search_in_book - Search within a specific book or text work
search_in_dictionaries - Search Jewish reference dictionaries
Support Tools:
get_english_translations - Retrieve all available English translations for a text
get_topic_details - Retrieve detailed information about topics in Jewish thought
clarify_name_argument - Autocomplete and validate text names, book titles, and topics
clarify_search_path_filter - Convert book names to proper search filter paths
Structure Tools:
get_text_or_category_shape - Explore the hierarchical structure of texts and categories
get_text_catalogue_info - Get bibliographic and structural information (index) for a work
Manuscript Tools:
get_available_manuscripts - Access historical manuscript metadata and image URLs
get_manuscript_image - Download and process specific manuscript images
All endpoints are optimized for LLM consumption (compact, relevant, and structured responses).
Related MCP server: Sefaria Jewish Library MCP Server
What is MCP?
MCP (Model Context Protocol) is an open protocol for connecting Large Language Models (LLMs) to external tools, APIs, and knowledge sources. It enables LLMs to retrieve, reference, and interact with structured data and external services in a standardized way. Learn more in the MCP documentation.
How to Run
Prerequisites
Python 3.10+
Docker (optional, for containerized deployment)
Local Development
Install dependencies:
pip install -e .Run the server:
python -m sefaria_mcp.mainThe server will be available at
http://127.0.0.1:8088/mcpby default, with the legacy SSE endpoint athttp://127.0.0.1:8088/sse. SetSEFARIA_MCP_PORTto override the HTTP port (e.g.,SEFARIA_MCP_PORT=8089 python -m sefaria_mcp.main). Prometheus metrics bind separately onSEFARIA_MCP_METRICS_PORT(default9090).
Configuration
Variable | Default | Purpose |
|
| Interface the HTTP server binds to |
|
| Port serving both |
|
| Port for the Prometheus metrics server |
|
| Comma-separated |
|
| Comma-separated browser |
|
| Set to |
Loopback hosts (127.0.0.1, localhost, ::1) are always accepted, so local
development needs no extra configuration.
Docker
Build the image:
docker build -t sefaria-mcp .Run the container:
docker run -d --name sefaria-mcp \ -e SEFARIA_MCP_PORT=8089 \ -e SEFARIA_MCP_METRICS_PORT=9090 \ -p 8089:8089 \ -p 9090:9090 \ sefaria-mcpThe server will be available at
http://localhost:8089/mcp(andhttp://localhost:8089/sse), with metrics athttp://localhost:9090/(adjust the port mappings as needed).
Transports
The server speaks two MCP transports on the same port. Both expose the identical set of tools.
Path | Transport | Status |
| Streamable HTTP | Primary. Use this for new clients. |
| HTTP+SSE | Legacy. Kept for backward compatibility; prefer |
Point your MCP-compatible client at https://mcp.sefaria.org/mcp. Clients that
only speak the older SSE transport can continue to use https://mcp.sefaria.org/sse,
but new integrations should not depend on it.
/mcp runs in stateless mode: every request carries its own transport, so no
session state is held between calls. It therefore accepts POST and DELETE
only, and returns 405 for GET (there is no server-initiated notification
stream to open). Requests to /mcp are checked against SEFARIA_MCP_ALLOWED_HOSTS
and SEFARIA_MCP_ALLOWED_ORIGINS, as the Streamable HTTP spec requires for
DNS-rebinding protection; a mismatched Host gets 421 and a mismatched
Origin gets 403. The legacy /sse endpoint is not host-checked.
Monitoring
Prometheus metrics are exposed via the standalone HTTP server started on
SEFARIA_MCP_METRICS_PORT(defaults to9090).Scrape
http://localhost:9090/(or your configured host/port). Metrics include:mcp_tool_calls_total{tool_name,status}– call counts per tool and status.mcp_tool_duration_seconds{tool_name}– histogram of per-call durations.mcp_tool_payload_bytes{tool_name}– histogram of response payload sizes.mcp_errors_total{tool_name,error_type}– per-tool error counts.mcp_active_connections– current SSE connection gauge (legacy/ssetransport only).Standard FastAPI instrumentation (request rate, latency, status codes, in-progress requests, etc.) from
prometheus_fastapi_instrumentator.
Commit Hygiene
This repo uses semantic commits with the fix, feat, and chore keywords.
Acknowledgments
Special thanks to @Sivan22 for pioneering the first Sefaria MCP server (mcp-sefaria-server), which inspired this project and the broader effort to make Jewish texts accessible to LLMs and modern AI tools.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
- WauldoOAuthcom.wauldo
Stateless agentic tools over MCP: concept extraction, long-context, knowledge graph, planning.
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
Web search, scraping, RAG answers with citations, and translation as MCP tools.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP 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.23MIT
- AlicenseBqualityDmaintenanceProvides access to Jewish texts from the Sefaria library. This server enables Large Language Models to retrieve and reference Jewish texts through a standardized interface.434MIT
- AlicenseBqualityDmaintenanceEnables Large Language Models to retrieve Jewish texts and commentaries from the Sefaria library through a standardized interface.21MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to access and query the Sefaria digital library of Jewish texts through natural language or direct tool calls.3 npmMIT