Skip to content
LangChain

torah mcp for LangChain

io.github.mrfentmen/torah-mcp

Keyless Torah study via Sefaria: weekly portion, Tanakh text, commentaries, links, search.

client:LangChain transport:stdio runtime:npm

Install torah mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "torah-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "torah-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

torah mcp in other clients