echo_violations
Pack: epa-echo · Endpoint: https://gateway.pipeworx.io/epa-echo/mcp
Get violation details for a facility, filterable by program (water, air, waste). Returns violation dates, types, and current status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
registry_id | string | yes | EPA Registry ID (from echo_facility_search results). |
program | string | no | Environmental program filter: “CWA” (water), “CAA” (air), or “RCRA” (waste). Defaults to CWA. |
Example call
Arguments
{
"registry_id": "110000350148"
}
curl
curl -X POST https://gateway.pipeworx.io/epa-echo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"echo_violations","arguments":{"registry_id":"110000350148"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('echo_violations', {
"registry_id": "110000350148"
});
More examples
{
"registry_id": "110000350148",
"program": "CAA"
}
Response shape
Always returns: registry_id, program, violations
| Field | Type | Description |
|---|---|---|
registry_id | string | EPA Registry ID for the facility |
program | string | Environmental program (CWA, CAA, or RCRA) |
violations | object | Violation details and status data |
Full JSON Schema
{
"type": "object",
"properties": {
"registry_id": {
"type": "string",
"description": "EPA Registry ID for the facility"
},
"program": {
"type": "string",
"description": "Environmental program (CWA, CAA, or RCRA)"
},
"violations": {
"type": "object",
"description": "Violation details and status data"
}
},
"required": [
"registry_id",
"program",
"violations"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"epa-echo": {
"url": "https://gateway.pipeworx.io/epa-echo/mcp"
}
}
}
See Getting Started for client-specific install steps.