Skip to content
LangChain

gitwand for LangChain

io.github.devlint/gitwand

Auto-resolves Git merge conflicts so agents only touch the complex hunks.

client:LangChain transport:stdio runtime:npm

Install gitwand in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

gitwand in other clients