Skip to content
LangChain

create survey for LangChain

io.github.feedbk-ai/create-survey

Create AI surveys with dynamic follow-up probing directly from your AI assistant.

client:LangChain transport:streamable-http tools:1

Install create survey in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "create-survey": {
            "transport": "streamable_http",
            "url": "https://mcp.feedbk.ai/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

create survey in other clients