Skip to content
LangChain

Filepad for LangChain

ai.filepad/filepad

Connect AI agents to Filepad workspaces through OAuth MCP.

client:LangChain transport:streamable-http

Install Filepad in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "filepad": {
            "transport": "streamable_http",
            "url": "https://api.filepad.ai/mcp",
        }
})

tools = await client.get_tools()

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

Filepad in other clients