Skip to content
LangChain

document processing for LangChain

ai.filegraph/document-processing

Extract text from documents, manipulate PDFs, and perform OCR on images.

client:LangChain transport:sse tools:9

Install document processing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "document-processing": {
            "transport": "streamable_http",
            "url": "https://api.filegraph.ai/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

document processing in other clients