Skip to content
LangChain

WorkforceGPT for LangChain

ai.workforcegpt/workforcegpt

HR and recruiting: score a job description, or generate a structured role profile. No API key.

client:LangChain transport:streamable-http

Install WorkforceGPT in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "workforcegpt": {
            "transport": "streamable_http",
            "url": "https://workforcegpt.ai/mcp",
        }
})

tools = await client.get_tools()

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

WorkforceGPT in other clients