Skip to content
LangChain

workday mcp for LangChain

io.github.chrischall/workday-mcp

Read-only Workday for Claude — fetch tasks, pay, benefits via your signed-in session

client:LangChain transport:stdio runtime:npm

Install workday mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

workday mcp in other clients