Skip to content
LangChain

three.ws Concierge for LangChain

io.github.nirholas/concierge-mcp

Ask any website's AI concierge a grounded question, and generate the embed to add one to a site.

client:LangChain transport:stdio runtime:npm

Install three.ws Concierge in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

three.ws Concierge in other clients