Skip to content
LangChain

Proton Drive CLI MCP for LangChain

io.github.borealstack/proton-drive-cli-mcp

Manage Proton Drive from MCP clients through Proton's official CLI without exposing credentials.

client:LangChain transport:stdio runtime:npm

Install Proton Drive CLI MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "proton-drive-cli-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@borealstack/proton-drive-cli-mcp"],
        }
})

tools = await client.get_tools()

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

Proton Drive CLI MCP in other clients