Skip to content
LangChain

File Storage for LangChain

ai.b77/file-storage

Upload files and get public CDN links in chat.

client:LangChain transport:streamable-http

Install File Storage in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "file-storage": {
            "transport": "streamable_http",
            "url": "https://file-storage.b77.ai/mcp",
        }
})

tools = await client.get_tools()

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

File Storage in other clients