Skip to content
LangChain

JobsPipe for LangChain

dev.jobspipe/mcp

Live job postings from 30+ ATS feeds and job boards, one schema. Sign in with OAuth, or use a key.

client:LangChain transport:streamable-http

Install JobsPipe in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

JobsPipe in other clients