Wraps the EPA Envirofacts REST API to pull environmental emissions data without any authentication hassle. Part of the Pipeworx gateway, which bundles 250+ data sources behind a single MCP interface. The repo is light on specifics about which tools ship with it, but you get the standard Pipeworx pattern: either call tools directly or use ask_pipeworx to throw natural language questions at it and let the gateway route to the right endpoint. Useful if you're building climate dashboards, compliance tools, or research workflows that need official US emissions records. Free tier, hosted at gateway.pipeworx.io, or grab the full gateway for broader access.
EPA Emissions MCP — wraps EPA Envirofacts REST API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"epa-emissions": {
"url": "https://gateway.pipeworx.io/epa-emissions/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ 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 Emissions data" })
The gateway picks the right tool and fills the arguments automatically.
MIT