Skip to content
LangChain

FileConvert for LangChain

online.file-convert/fileconvert

Convert files between 110+ document, image, audio, video, archive and ebook formats from AI agents.

client:LangChain transport:streamable-http

Install FileConvert in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "fileconvert": {
            "transport": "streamable_http",
            "url": "https://file-convert.online/api/mcp/v1/mcp",
        }
})

tools = await client.get_tools()

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

FileConvert in other clients