Skip to content
LangChain

remote filesystem for LangChain

com.pulsemcp/remote-filesystem

MCP server for remote filesystem operations on cloud storage (Google Cloud Storage).

client:LangChain transport:stdio runtime:npm

Install remote filesystem in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

remote filesystem in other clients