Skip to content
LangChain

talkthru for LangChain

io.github.edonzo/talkthru

Talk while using your app — your coding agent gets each sentence aligned to the frame. Fully local.

client:LangChain transport:stdio runtime:npm

Install talkthru in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

talkthru in other clients