Octopus Energy · Capability

Octopus Energy Kraken REST API — Meter Points

Kraken REST API meter-point management surface exposed via the developer.octopus.energy portal Reference section.

Octopus Energy Kraken REST API — Meter Points is a Naftiko capability published by Octopus Energy, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 1 operation.

The capability includes 1 read-only operation. Lead operation: List Kraken meter points via the REST API. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Octopus Energy, Kraken, REST, and Meter Points.

Run with Naftiko Octopus EnergyKrakenRESTMeter Points

MCP Tools

kraken-list-meter-points

List Kraken meter points via the REST API.

read-only idempotent

Capability Spec

kraken-meter-points.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Octopus Energy Kraken REST API — Meter Points
  description: Kraken REST API meter-point management surface exposed via the developer.octopus.energy portal Reference section.
  tags: [Octopus Energy, Kraken, REST, Meter Points]
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    KRAKEN_API_KEY: KRAKEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: kraken-meter-points
    baseUri: https://developer.octopus.energy/rest
    description: Kraken REST API meter-point endpoints.
    resources:
    - name: meter-points
      path: /meter-points/
      operations:
      - name: listmeterpoints
        method: GET
        description: List Kraken Meter Points
        outputRawFormat: json
        outputParameters:
        - {name: result, type: object, value: $.}
    authentication:
      type: bearer
      token: '{{env.KRAKEN_API_KEY}}'
  exposes:
  - type: mcp
    namespace: kraken-meter-points-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kraken REST Meter Points.
    tools:
    - name: kraken-list-meter-points
      description: List Kraken meter points via the REST API.
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: kraken-meter-points.listmeterpoints
      outputParameters: [{type: object, mapping: $.}]