Auvik for LangChain
io.github.wyre-technology/auvik-mcp
MCP server for the Auvik network monitoring API — devices, alerts, statistics, billing.
client:LangChain
transport:stdio
runtime:oci
Install Auvik in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"auvik-mcp": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/wyre-technology/auvik-mcp:v1.4.2"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs