get_facility
Pack: epa-envirofacts · Endpoint: https://gateway.pipeworx.io/epa-envirofacts/mcp
Look up one EPA-regulated facility by its FRS Registry ID. Returns the facility detail plus a programs[] array listing every EPA program (RCRAINFO, NPDES, AIRS, TRI, etc.) the site is regulated under. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
registry_id | string | yes | FRS Registry ID, e.g. “110066524112”. |
Example call
Arguments
{
"registry_id": "110066524112"
}
curl
curl -X POST https://gateway.pipeworx.io/epa-envirofacts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_facility","arguments":{"registry_id":"110066524112"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_facility', {
"registry_id": "110066524112"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"epa-envirofacts": {
"url": "https://gateway.pipeworx.io/epa-envirofacts/mcp"
}
}
}
See Getting Started for client-specific install steps.