Connects Claude to the US EPA's Envirofacts database, a collection of environmental datasets covering air quality, water discharge, hazardous waste, and toxic releases across the United States. Part of the Pipeworx gateway, which routes requests to 846+ data sources and includes an ask_pipeworx tool that translates natural language questions into the appropriate API calls. Useful when you need to pull facility compliance data, look up pollution metrics by geography, or answer questions about environmental regulatory information without manually constructing EPA API queries. Available as a standalone server or through the full Pipeworx gateway for broader data access.
US EPA Envirofacts MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 846+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"epa-envirofacts": {
"url": "https://gateway.pipeworx.io/epa-envirofacts/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 846+ 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 Envirofacts data" })
The gateway picks the right tool and fills the arguments automatically.
MIT