fuel_price_coverage
Pack: fuel-prices · Endpoint: https://gateway.pipeworx.io/fuel-prices/mcp
Which countries and weeks this fuel-price data covers, and how fresh it is: the list of countries, the newest and oldest week available, the total number of weekly observations, and which fuels are carried. Use to check a country is in scope before asking about it — coverage is the European Union plus the United Kingdom, so the United States, Switzerland, Norway and Turkey are not included.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/fuel-prices/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fuel_price_coverage","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fuel_price_coverage', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fuel-prices": {
"url": "https://gateway.pipeworx.io/fuel-prices/mcp"
}
}
}
See Getting Started for client-specific install steps.