octopus-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@octopus-mcpcompare my current tariff with Octopus Go"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
octopus-mcp
Unofficial. Not affiliated with Octopus Energy. Uses the public REST API and the community-known Kraken GraphQL endpoint; the latter is unofficial and may break without notice.
A Model Context Protocol server that lets Claude analyse your Octopus Energy account: usage, costs, tariff comparisons, Saving Sessions, Octoplus rewards.
Works with Claude Code, Claude Desktop, and any MCP-compatible client.
Prerequisites
Python 3.11 or newer
An Octopus Energy account in the UK
A smart meter sending half-hourly readings (so consumption data is available via the API)
Install
The server is published on PyPI as octopus-mcp. You can install it with uv (recommended) or plain pip.
With uv (recommended)
If you don't have uv yet:
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Then install the MCP server and save credentials:
uv tool install octopus-mcp
octopus-mcp configure # interactive; writes to your OS keychainWith pip
pip install octopus-mcp
octopus-mcp configureWire it into your MCP client
Claude Code
In Claude Code, register this repo as a plugin marketplace and install the octopus plugin from it:
/plugin marketplace add DanielChicot/octopus-mcp
/plugin install octopus@octopus-mcpThe plugin auto-registers the MCP server (no manual config-file edits needed) and adds four slash commands (/octopus:bill, /octopus:compare, /octopus:peaks, /octopus:saving-sessions) plus an analysis skill that Claude triggers automatically on energy-related questions.
Claude Desktop, Cursor, and other MCP clients
Add this entry to your client's MCP config:
{
"mcpServers": {
"octopus": {
"command": "uvx",
"args": ["octopus-mcp"]
}
}
}(If you installed with pip instead of uv, replace "command": "uvx", "args": ["octopus-mcp"] with "command": "octopus-mcp", "args": ["serve"].)
The config file lives at:
Platform | Path |
macOS |
|
Linux |
|
Windows |
|
Restart your MCP client after editing the config.
Credentials
You need:
OCTOPUS_API_KEY— find at octopus.energy → My account → Personal details → Developer settingsOCTOPUS_ACCOUNT_NUMBER—A-XXXXXXXX, on any bill or in your account
Optional (only some Kraken queries):
OCTOPUS_EMAIL/OCTOPUS_PASSWORD
Resolution order: shell env > .env > OS keyring > error. The recommended path is octopus-mcp configure which writes to the OS keyring so secrets never sit in plaintext config.
Tools
Tool | What it does |
| Total kWh and £ per fuel for a period |
| Aggregated kWh by hour/day/week/month |
| Top-N highest-usage half-hours |
| Replay your usage against another Octopus tariff |
| What you're on now: unit rate, standing charge |
| Octoplus saving sessions joined and rewards earned |
| Thin getters / escape hatches |
Slash commands (Claude Code plugin)
/octopus:bill [period]— bill summary as a markdown table/octopus:compare <product-code> [period]— tariff comparison with caveats/octopus:peaks [period] [top_n]— highest-usage half-hours/octopus:saving-sessions— Octoplus history
How it works
A SQLite cache at
~/Library/Caches/octopus-mcp/(or your platform's equivalent) holds your historical consumption and tariff data, refreshed incrementally.All cost figures are in integer pence inc-VAT (no float drift), with a derived pounds string for display.
Tariff comparison is a pure tariff swap model — caveats list what it does and doesn't model. See the design doc.
Known limitations (v0.1)
Gas SMETS2 m³ vs kWh: if your gas meter reports in m³, values won't be normalised — expect implausibly small numbers and multiply by ~11.18 to convert. v0.2 will detect and apply calorific conversion automatically.
Region-aware tariff lookup:
compare_tariffcurrently picks the first region's tariff variant from a target product. v0.2 will use your postcode-derived region.TTLs are hardcoded: no
config.tomlsupport yet.No background sync: consumption is fetched lazily on demand.
Privacy
The MCP runs on your machine. No data leaves your computer except direct calls to api.octopus.energy. Credentials live in your OS keychain. Logs at ~/Library/Logs/octopus-mcp/server.log redact secrets.
Contributing
See CONTRIBUTING.md. Run pre-commit run --all-files before pushing.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DanielChicot/octopus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server