Skip to content
LangChain

talkform for LangChain

io.github.msanchezgrice/talkform

Local Talkform schemas, bundled interview templates, and config validation for AI agents.

client:LangChain transport:stdio runtime:npm

Install talkform in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

talkform in other clients