Skip to content
LangChain

Quizlar — voice-powered AI flashcards with spaced repetition for LangChain

io.github.quizlar/mcp-server

Voice-led, FSRS-scheduled flashcards from YouTube, PDFs, web, or text. Auto-graded quizzes.

client:LangChain transport:streamable-http

Install Quizlar — voice-powered AI flashcards with spaced repetition in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-server": {
            "transport": "streamable_http",
            "url": "https://mcp.quizlar.app/mcp/",
        }
})

tools = await client.get_tools()

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

Quizlar — voice-powered AI flashcards with spaced repetition in other clients