Skip to content
LangChain

LaborTrends NLP for LangChain

io.github.evozim/labor-trends

Labor market trend analyzer utilizing advanced NLP semantic parsing.

client:LangChain transport:sse

Install LaborTrends NLP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "labor-trends": {
            "transport": "streamable_http",
            "url": "https://labor-trends-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

LaborTrends NLP in other clients