Skip to content
LangChain

Proximo — the Proxmox MCP you can hand the keys for LangChain

io.github.john-broadway/proximo-proxmox

The Proxmox MCP you can hand the keys: VE/PBS/PMG/PDM. Plan, prove, undo, diagnose. MCP/A2A/API.

client:LangChain transport:stdio runtime:pypi

Install Proximo — the Proxmox MCP you can hand the keys in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "proximo-proxmox": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["proximo-proxmox"],
        }
})

tools = await client.get_tools()

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

Proximo — the Proxmox MCP you can hand the keys in other clients