Skip to content
LangChain

tapwatermap for LangChain

io.github.squidcode/tapwatermap

Query US tap-water quality from the EPA's SDWIS records — by city, system, or contaminant.

client:LangChain transport:streamable-http tools:10

Install tapwatermap in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tapwatermap": {
            "transport": "streamable_http",
            "url": "https://mcp.tapwatermap.com/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

tapwatermap in other clients