Skip to content
LangChain

wisegit for LangChain

io.github.sandip124/wisegit

Extracts decision intent from git history and protects intentional code from AI modification.

client:LangChain transport:stdio runtime:npm

Install wisegit in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

wisegit in other clients