Skip to content
LangChain

katzilla for LangChain

io.github.codeislaw101/katzilla

300+ free public & government data sources behind one API key, for AI agents.

client:LangChain transport:stdio runtime:npm

Install katzilla in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

katzilla in other clients