product_details
Pack: octopus-energy · Endpoint: https://gateway.pipeworx.io/octopus-energy/mcp
Full detail for one product code, including its tariffs broken out by GSP region “_A”..”_P” and payment method (e.g. direct_debit_monthly). Each tariff entry has a “code” (e.g. “E-1R-AGILE-24-10-01-C”), standing charges and unit rates (inc/exc VAT). Use the tariff “code” with tariff_unit_rates. Tariff sets returned: single_register_electricity_tariffs, dual_register_electricity_tariffs, four_rate_ev_electricity_tariffs, single_register_gas_tariffs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
productCode | string | yes | Product code from list_products, e.g. “AGILE-24-10-01”. |
Example call
Arguments
{
"productCode": "AGILE-24-10-01"
}
curl
curl -X POST https://gateway.pipeworx.io/octopus-energy/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"product_details","arguments":{"productCode":"AGILE-24-10-01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('product_details', {
"productCode": "AGILE-24-10-01"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"octopus-energy": {
"url": "https://gateway.pipeworx.io/octopus-energy/mcp"
}
}
}
See Getting Started for client-specific install steps.