Epa Echo
liveEnvironmentGovernmentLegalEPA ECHO Web Services — search regulated facilities, compliance history, violation records, and enforcement actions for CWA/CAA/RCRA programs.
Tools
echo_facility_searchSearch EPA-regulated facilities by name, state, ZIP, city, or NAICS code. Returns registry IDs, addresses, compliance status, and program affiliations (CWA, CAA, RCRA).
No parameters required.
Try it
echo_compliance_historyGet compliance and enforcement history for a specific EPA-regulated facility. Returns compliance status, quarters in violation, inspection dates, and enforcement actions.
No parameters required.
Try it
echo_violationsGet detailed violation records for a facility, optionally filtered by environmental program (CWA, CAA, RCRA).
No parameters required.
Try it
echo_enforcement_actionsGet enforcement case details for a facility, including formal/informal actions, penalties assessed, and penalty amounts.
No parameters required.
Try it
echo_search_by_violationFind facilities currently in significant non-compliance. Filter by state and/or environmental program.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/epa-echo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/epa-echo/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"echo_facility_search","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("echo_facility_search", {});// Or ask in plain English:
const answer = await px.ask("epa echo web services — search regulated facilities, compliance history, violation records, and enforcement actions for cwa/caa/rcra programs");