Skip to content
LangChain

Kody for LangChain

io.github.kentcdodds/kody

Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.

client:LangChain transport:streamable-http

Install Kody in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "kody": {
            "transport": "streamable_http",
            "url": "https://kody.codes/mcp",
        }
})

tools = await client.get_tools()

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

Kody in other clients