FastMCP Server for Sefaria
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sefaria-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A modern MCP (Model Context Protocol) server for accessing the Jewish library via the Sefaria API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A MCP server that integrates the Semantic Scholar API and the arXiv API so AI assistants (e.g. Claude Code, Cursor) can search and fetch academic paper metadata.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for Sefaria Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A modern MCP (Model Context Protocol) server for accessing the Jewish library via the Sefaria API.
This server exposes the Sefaria Jewish library as a set of 15 MCP tools, allowing LLMs and other MCP clients to:
Primary Tools:
Core Tools:
Support Tools:
Structure Tools:
Manuscript Tools:
All endpoints are optimized for LLM consumption (compact, relevant, and structured responses).
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.
pip install -e .
python -m sefaria_mcp.main
The server will be available at http://127.0.0.1:8088/sse by default.
Set SEFARIA_MCP_PORT to override the SSE/API port (e.g., SEFARIA_MCP_PORT=8089 python -m sefaria_mcp.main).
Prometheus metrics bind separately on SEFARIA_MCP_METRICS_PORT (default 9090).docker build -t sefaria-mcp .
docker run -d --name sefaria-mcp \
-e SEFARIA_MCP_PORT=8089 \
-e SEFARIA_MCP_METRICS_PORT=9090 \
-p 8089:8089 \
-p 9090:9090 \
sefaria-mcp
The server will be available at http://localhost:8089/sse and metrics at http://localhost:9090/ (adjust the port mappings as needed)./sse endpoint.SEFARIA_MCP_METRICS_PORT (defaults to 9090).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.