Skip to content
LangChain

MCP FactorialHR for LangChain

io.github.t4dhg/mcp-factorial

Full CRUD MCP server for FactorialHR: employees, teams, time off, projects, ATS, payroll.

client:LangChain transport:stdio runtime:npm

Install MCP FactorialHR in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MCP FactorialHR in other clients