Skip to content
LangChain

Great Question for LangChain

io.github.greatquestion/mcp

Run user research from any AI tool. Create studies, recruit participants, query insights.

client:LangChain transport:streamable-http

Install Great Question in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "transport": "streamable_http",
            "url": "https://greatquestion.co/api/mcp/v1",
        }
})

tools = await client.get_tools()

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

Great Question in other clients