Connects Claude to Climatiq's carbon emissions database through Pipeworx's gateway infrastructure. Exposes list_unit_types to browse supported measurement families like energy, volume, distance, and mass with their valid units. Part of a larger 250+ data source gateway, so you can either point directly at the Climatiq endpoint or use the full Pipeworx hub. Includes an ask_pipeworx wrapper that takes natural language questions instead of raw tool calls. Useful when you need to calculate carbon footprints or work with emission factors in your agent workflows without managing API keys or parsing responses yourself.
Climatiq MCP — carbon footprint calculator with emission factors
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
list_unit_types | List supported unit-type families (Energy / Volume / Distance / Mass / etc.) and their valid units. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"climatiq": {
"url": "https://gateway.pipeworx.io/climatiq/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 Climatiq data" })
The gateway picks the right tool and fills the arguments automatically.
MIT