Skip to content
LangChain

FileSeal Secure Send for LangChain

io.github.fileseal/mcp-send

Send a file to a person as a one-time, encrypted, auto-deleting download link.

client:LangChain transport:stdio runtime:npm

Install FileSeal Secure Send in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

FileSeal Secure Send in other clients