
Amber Electric MCP By UnClick
- malamutemayhem/unclick
Amber Electric MCP is an MCP server that exposes Australian spot electricity prices and renewables data to your agent via UnClick’s @unclick/amber-mcp package.
About
Amber Electric MCP by UnClick connects your coding agent to real-time Australian electricity spot prices and renewables data sourced from the Amber Electric ecosystem. Australian developers running home labs, GPU experiments, or always-on APIs can use it in the operate phase to ask grounded questions about when power is cheap, how green the grid mix is, and whether cron jobs should shift—without building a custom scraper first. Installation follows the standard UnClick pattern: register stdio MCP with npx @unclick/amber-mcp. The scope is intentionally narrow: it is not a full utility bill dashboard, but an agent-facing data bridge for infra-minded operators. Use it when your product narrative or personal ops touch the National Electricity Market; skip it if you host only outside Australia or do not care about marginal power cost.
- Real-time Australian electricity spot prices via Amber Electric data surfaces
- Renewables generation context for cost and carbon-aware scheduling conversations
- @unclick/amber-mcp on npm with stdio transport and npx (v0.1.0)
- Maintained by UnClick as a standalone package in the unclick monorepo
- Fits MCP clients such as Claude Code, Cursor, and Codex without a separate skill
Amber Electric MCP By UnClick by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add amber -- npx -y @unclick/amber-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | @unclick/amber-mcp |
|---|---|
| Transport | STDIO |
| Auth | None |
| Repository | malamutemayhem/unclick ↗ |
What it does
Pull real-time Australian wholesale electricity spot prices and renewables mix so you can reason about homelab, mining, or batch job scheduling costs with your agent.
Who is it for?
Australian developers optimizing homelab spend, energy side projects, or ops automation tied to NEM pricing.
Skip if: Developers outside Australian electricity markets or teams needing formal utility billing and contract management.
What you get
Your agent answers with current Amber-backed price and renewables signals so you can tune infra timing with data.
- Agent-accessible current spot price queries
- Renewables-related electricity market context in responses
- Registered @unclick/amber-mcp v0.1.0 MCP server
By the numbers
- npm package @unclick/amber-mcp version 0.1.0
- MCP stdio transport declared in server manifest
- Server titled Amber Electric MCP by UnClick
README.md
UnClick MCP server
The app store for AI agents. unclick.world
450+ callable endpoints across 178+ tools, available to any MCP-compatible AI client. New tools ship to the API continuously. Your agent picks them up automatically; no package update is needed.
Install
Using the latest GitHub release (no npm account required):
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"]
}
}
}
Add this to your claude_desktop_config.json (or equivalent for Cursor, Windsurf, etc).
Or install globally from GitHub:
npm install -g https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz
Operational Notes
This repo follows the AGENTS.md fence rules for agent work.
Run
For local web development:
npm run dev
For the API workspace:
npm run dev:api
Test
Run the main test suite:
npm test
Run the production build check:
npm run build
License
UnClick uses a split license. The platform (website, API, and hosted backend
and memory services) is AGPL-3.0 (see LICENSE). The npm client
package @unclick/mcp-server stays MIT, and the standalone connector
packages stay Apache-2.0. Full breakdown and reasoning in
LICENSING.md.
What it does
Gives your agent access to a growing catalog of tools across developer utilities, social media, e-commerce, finance, messaging, media, security, and more. You don't need to install separate packages for each integration. One server provides access to everything in the catalog.
Tool Surface
UnClick exposes a small direct surface for daily agent workflows, plus hidden internal discovery tools for the full catalog.
| Tool group | Tools |
|---|---|
| Memory session protocol | load_memory, save_fact, search_memory, save_identity, save_session |
| Signals and Boardroom coordination | check_signals, read_messages, post_message, create_todo, list_todos, update_todo, complete_todo, create_idea, list_ideas, vote_on_idea, promote_idea_to_todo |
| Hidden internal catalog tools | unclick_search, unclick_browse, unclick_tool_info, unclick_call |
The agent starts with memory, uses direct Boardroom tools for coordination, and can still call the hidden catalog tools by name when it needs dynamic endpoint discovery.
Compatibility and advanced memory operations
- Legacy memory names still work as aliases:
get_startup_context->load_memory,write_session_summary->save_session,add_fact->save_fact,set_business_context->save_identity. - The remaining memory operations are intentionally not listed in
ListToolsand are called throughunclick_callwithendpoint_id: "memory.<op>"(for examplememory.manage_decay,memory.store_code,memory.log_conversation,memory.supersede_fact,memory.upsert_library_doc).
Requirements
- Node.js 18+
- An API key from unclick.world
Set your key as an environment variable:
UNCLICK_API_KEY=your_key_here
Or pass it via the MCP config:
{
"mcpServers": {
"unclick": {
"command": "npx",
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/latest/download/unclick.tgz"],
"env": {
"UNCLICK_API_KEY": "your_key_here"
}
}
}
}
More
Full catalog, docs, and API keys at unclick.world.
Recommended MCP Servers
How it compares
Live energy data MCP feed, not a general cloud cost optimizer skill.
FAQ
Who is Amber Electric MCP for?
Developers in Australia who want Claude Code or Cursor to reference live spot power and renewables data while discussing infra and workloads.
When should I use Amber Electric MCP?
Use it during operate-phase infra reviews, cron tuning, or when validating energy-related product ideas with real market signals.
How do I add Amber Electric MCP to my agent?
Configure MCP stdio to run npx @unclick/amber-mcp, save the server block, and reload your agent client.