Skip to content
LangChain

gitworthy for LangChain

io.github.trippyogi/gitworthy

is it worth your commit? Pre-flight triage for OSS contribution targets.

client:LangChain transport:stdio runtime:npm

Install gitworthy in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

gitworthy in other clients