Connects to the EPA's Enforcement and Compliance History Online (ECHO) web services, giving you programmatic access to environmental compliance and enforcement data for facilities across the United States. The source doesn't list specific tools, but ECHO APIs typically cover facility searches, inspection records, violation histories, and enforcement actions. No authentication required. Useful when you need to check a company's environmental compliance track record, research pollution data for a geographic area, or pull enforcement histories for due diligence. Part of the Pipeworx gateway, so you can use their ask_pipeworx wrapper to query in plain English instead of learning the EPA's parameter structure.
EPA ECHO MCP — wraps EPA ECHO Web Services (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"epa-echo": {
"url": "https://gateway.pipeworx.io/epa-echo/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Epa Echo data" })
The gateway picks the right tool and fills the arguments automatically.
MIT