Skip to content
LangChain

CodeZaiku for LangChain

io.github.wyrdsekai/codezaiku

A coding and development harness on local models or hosted APIs: code, review, research, ops.

client:LangChain transport:stdio runtime:npm

Install CodeZaiku in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

CodeZaiku in other clients