Skip to content
LangChain

mcp workplace program detector for LangChain

com.mambabuilt/mcp-workplace-program-detector

Detect the employee programs a company publishes: ERGs, DEI, benefits, leave, volunteering.

client:LangChain transport:stdio runtime:npm

Install mcp workplace program detector in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-workplace-program-detector": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@mambalabsdev/mcp-workplace-program-detector"],
        }
})

tools = await client.get_tools()

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

mcp workplace program detector in other clients