Skip to content
LangChain

adu zoning for LangChain

io.github.themutherfvcker/adu-zoning

Check if a Florida address can build an ADU: county GIS zoning, eligibility verdict, local rules.

client:LangChain transport:streamable-http runtime:npm tools:1

Install adu zoning in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "adu-zoning": {
            "transport": "streamable_http",
            "url": "https://www.adufloridainfo.com/api/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

adu zoning in other clients