Skip to content
LangChain

Repowise for LangChain

dev.repowise/repowise

Codebase intelligence for AI coding agents — graph, git history, docs, decisions, code health.

client:LangChain transport:stdio runtime:pypi

Install Repowise in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "repowise": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["repowise"],
        }
})

tools = await client.get_tools()

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

Repowise in other clients