Skip to content
LangChain

Zabbix AI CLI MCP for LangChain

io.github.stufently/zabbix-ai-cli-mcp

Task-shaped Zabbix access for AI agents: problems, host triage, metrics, maintenance windows.

client:LangChain transport:stdio runtime:oci

Install Zabbix AI CLI MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "zabbix-ai-cli-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/stufently/zabbix-ai-cli-mcp:0.4.1"],
        }
})

tools = await client.get_tools()

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

Zabbix AI CLI MCP in other clients