echo_enforcement_actions

Pack: epa-echo · Endpoint: https://gateway.pipeworx.io/epa-echo/mcp

Retrieve enforcement cases against a facility. Returns action type, penalty amounts, dates, and settlement details.

Parameters

NameTypeRequiredDescription
registry_idstringyesEPA Registry ID (from echo_facility_search results).

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_enforcement_actions","arguments":{"registry_id":"110000350148"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('echo_enforcement_actions', {
  "registry_id": "110000350148"
});

Response shape

Always returns: registry_id, enforcement_summary

FieldTypeDescription
registry_idstringEPA Registry ID for the facility
enforcement_summaryobjectEnforcement actions and penalty information
Full JSON Schema
{
  "type": "object",
  "properties": {
    "registry_id": {
      "type": "string",
      "description": "EPA Registry ID for the facility"
    },
    "enforcement_summary": {
      "type": "object",
      "description": "Enforcement actions and penalty information"
    }
  },
  "required": [
    "registry_id",
    "enforcement_summary"
  ]
}

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.

Regenerated from source · build May 9, 2026