Skip to content
LangChain

muni dev cost for LangChain

io.github.baneado98/muni-dev-cost

US municipal development cost: aggregated impact + water/sewer tap fees per jurisdiction

client:LangChain transport:streamable-http

Install muni dev cost in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "muni-dev-cost": {
            "transport": "streamable_http",
            "url": "https://muni-dev-cost-mcp.vercel.app/mcp",
        }
})

tools = await client.get_tools()

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

muni dev cost in other clients