Skip to content
LangChain

ezpzfile for LangChain

io.github.ezpzfile/ezpzfile

Local file tools for agents: documents, PDFs, images, QR codes. Nothing is uploaded.

client:LangChain transport:stdio runtime:npm

Install ezpzfile in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ezpzfile in other clients