Skip to content
LangChain

autopilot jobhunt for LangChain

io.github.tarunlnmiit/autopilot-jobhunt

Agentic job hunt: scan careers pages, score against your resume, draft applications. Never applies.

client:LangChain transport:stdio runtime:pypi

Install autopilot jobhunt in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "autopilot-jobhunt": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["autopilot-jobhunt"],
        }
})

tools = await client.get_tools()

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

autopilot jobhunt in other clients