Skip to content
LangChain

Crewhu for LangChain

io.github.wyre-technology/crewhu-mcp

MCP server for Crewhu — customer feedback (CSAT/NPS), employee engagement, and gamification.

client:LangChain transport:stdio runtime:oci

Install Crewhu in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "crewhu-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/crewhu-mcp:v2.0.3"],
        }
})

tools = await client.get_tools()

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

Crewhu in other clients