Skip to content
LangChain

confdiff mcp for LangChain

io.github.esperanza-volkov/confdiff-mcp

Semantic, format-aware diff of config files (JSON/YAML/TOML/INI/.env/XML/CSV) for AI agents

client:LangChain transport:stdio runtime:npm

Install confdiff mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "confdiff-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "confdiff-mcp"],
        }
})

tools = await client.get_tools()

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

confdiff mcp in other clients