How to Use the EPA ECHO (Enforcement & Compliance) MCP in LangChain
Build compliance investigation chains. Connect EPA data directly into your LangChain agents to track down environmental violations.
Works with every AI agent you already use
…and any MCP-compatible client
Connect EPA ECHO (Enforcement & Compliance) MCP to LangChain
Create your Vinkius account to connect EPA ECHO (Enforcement & Compliance) to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Chain EPA ECHO (Enforcement & Compliance) Searches
The `search_all_facilities` tool lets your agent pull a massive list of industrial sites based on location. Your LangChain agent grabs that raw list and feeds it directly into the next step of your pipeline. You don't have to manually copy data between systems. Once the agent identifies a target, it fires off `get_detailed_facility_report` to pull the full compliance history. You can watch the exact inputs and outputs flow through LangSmith. If a facility has violations, the agent catches it immediately and moves to the next node in your graph.
Cross-Reference Air and Water Permits
The `search_air_facilities` and `search_water_facilities` tools expose stationary sources and NPDES-regulated sites. A ReAct agent can query both endpoints simultaneously to find cross-media polluters. It looks for companies failing on multiple fronts. You set the conditions. If the agent spots a Clean Water Act violation, it triggers `get_effluent_chart` to pull the specific discharge limits and exceedances. The output of the water search dictates the parameters for the effluent chart request.
Track Hazardous Waste Handlers
The `search_hazardous_waste_facilities` tool queries RCRA-regulated sites. Combine this with the `search_drinking_water_systems` tool to map out waste handlers operating near public water supplies. Your agent handles the spatial logic and data formatting. The MCP standard makes these connections reliable. LangChain treats each EPA endpoint as a standard tool call, so you get predictable JSON responses every time. You build the reasoning loop, and the agent executes the data pulls until it finds the connection.
Set up EPA ECHO (Enforcement & Compliance) MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes EPA ECHO (Enforcement & Compliance) tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"epa-echo-enforcement-compliance-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent EPA ECHO (Enforcement & Compliance) transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by EPA ECHO. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about EPA ECHO (Enforcement & Compliance) MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the EPA ECHO (Enforcement & Compliance) MCP today
We host it, we monitor it, we maintain it. You just paste one token.