Skip to content
LangChain

ftp ssh mcp for LangChain

io.github.chris221/ftp-ssh-mcp

Work with a remote host over FTP/FTPS/SFTP, SSH, and MySQL.

client:LangChain transport:stdio runtime:npm

Install ftp ssh mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

ftp ssh mcp in other clients