Skip to content
LangChain

easysend for LangChain

io.github.easysend-co/easysend

EasySend file sharing MCP server - upload, download and share files. No authentication required.

client:LangChain transport:stdio runtime:npm

Install easysend in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

easysend in other clients