Skip to content
LangChain

CodeWiki MCP — AI-generated docs for GitHub repos for LangChain

io.github.izzzzzi/codewiki-mcp

MCP server for codewiki.google: search repos, fetch wiki docs, ask questions

client:LangChain transport:stdio runtime:npm

Install CodeWiki MCP — AI-generated docs for GitHub repos in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

CodeWiki MCP — AI-generated docs for GitHub repos in other clients