Skip to content
LangChain

mcp victoriatraces for LangChain

io.github.victoriametrics-community/mcp-victoriatraces

MCP Server for VictoriaTraces. Provides integration with VictoriaTraces API and documentation

client:LangChain transport:stdio runtime:oci

Install mcp victoriatraces in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-victoriatraces": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/victoriametrics-community/mcp-victoriatraces:1.5.0"],
        }
})

tools = await client.get_tools()

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

mcp victoriatraces in other clients