Skip to content
LangChain

human survey for LangChain

io.github.sunsiyuan/human-survey

Self-reported attribution: which channel and which creator your users first heard you from.

client:LangChain transport:stdio runtime:npm

Install human survey in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

human survey in other clients