Command Palette

Search for a command to run...

UnylyUnyly
Browse all

dbhq-uk/heliograph

FreeMaintained

Run commands on a machine you cannot SSH into. Publishes a step to a transport the far side already reaches (git, file share, S3-compatible storage, relay or a

GitHubEmbed

About

Run commands on a machine you cannot SSH into. Publishes a step to a transport the far side already reaches (git, file share, S3-compatible storage, relay or a carried file); the whole run comes back as a log with every line timestamped in UTC, whether it passed or failed. For air-gapped, bastion-only and change-controlled estates: no tunnel, no proxy, nothing held open. The gates live on the far side, so a tool call can ask but cannot authorise. heliograph mcp.

README

heliograph, by DBHQ

heliograph

Remote, captured, auditable execution on a machine you cannot log into

License: MIT Docs

A free, open-source tool by DBHQ


Someone can reach the machine. You cannot, and you are the one who knows what to ask it. heliograph runs that gap as a loop rather than a relay: you publish a step, it runs on the far side, and the whole run comes back as a log with every line timestamped in UTC, whether it passed or failed.

you        heliograph send net-probe ────────────────▶ transport
station    picks it up within seconds, runs it
           pushes status, then the log ──────────────▶ transport
you        heliograph logs --last --gaps ◀────────────

Does this sound familiar

  • You have no SSH access to production, and you are not going to be given any.
  • The environment is air-gapped, or behind a bastion, a jump host or a VPN you are not on.
  • It is a client-owned or customer-managed estate. Only their staff can log in.
  • Access is blocked by policy, not capability: regulated, restricted, change-controlled.
  • You are on the fourth round of "can you run this and paste the output", and what came back was a screenshot of half a terminal.
  • You are an AI coding agent driving an investigation, and you need the evidence rather than somebody's summary of it.

If you can just SSH in, you do not need this.

Three roles, one boundary

The boundary is the gap, and the layout states it once:

control your machine: the heliograph CLI, heliograph mcp, and the skill that drives them. Go, and whatever the near side can afford
transport the channel: git, relay, file share, bundle, object store - all behind one interface, so the read-only gates live in one place and cannot drift per transport
station the far side: station/bash/, planted into a private transport repo. Bash 4+, git and GNU coreutils. No packages, no credentials, no tunnel

Nothing is ever installed on the far side. The station is plain bash you can read before you run, and no Go will ever appear under station/bash/ - CI enforces it. That constraint is the entire proposition on a locked-down box where installing anything is its own change request.

Install

# Linux and macOS, from a release
curl -sSL https://github.com/dbhq-uk/heliograph/releases/latest/download/heliograph-linux-amd64 \
  -o /usr/local/bin/heliograph && chmod +x /usr/local/bin/heliograph

# or from source
go install github.com/dbhq-uk/heliograph/cmd/heliograph@latest

A single static binary, no runtime. Checksums are published with each release, and the binary carries the station payload it was built with.

The agent skill - the same loop, driven from Claude Code, Codex, Cursor and friends:

/plugin marketplace add dbhq-uk/marketplace
/plugin install heliograph@dbhq         # Claude Code
./install-codex.sh                      # Codex, from a clone
./install.sh                            # Claude Code, from a clone
npx skills add dbhq-uk/heliograph       # any agent, via skills.sh

Use

heliograph bootstrap ~/transport/payments             # plant the station payload
heliograph init payments --dir ~/transport/payments   # git, the default
heliograph plant                                      # what to send the operator
heliograph send net-probe HOSTS="sql01 sql02"         # publish a request
heliograph watch                                      # follow it
heliograph logs --last                                # read the whole log
heliograph logs --last --gaps                         # where it stalled
heliograph doctor                                     # will this work from here
heliograph mcp                                        # serve all of the above as tools

The operator's whole job is what plant prints: clone the transport repo, run ./start.sh, walk away. The loop is read-only unless the operator said otherwise: every step declares itself (# heliograph-mode: read-only or action), one that declares neither does not run, and the station refuses an action unless it was started with --allow-actions. It will not run as root either.

For an agent, heliograph mcp is the same CLI as typed MCP tools:

claude mcp add heliograph -- heliograph mcp

The gates do not move. A tool call publishes a request; the station still decides whether to run it.

--gaps is the one worth knowing about. "Scan the timestamp column for gaps before reading the content" is the most valuable instruction in the method, and it is arithmetic:

$ heliograph logs --last --gaps
demo-20260906T183628Z.txt
5 captured lines

1 interval(s) of 10s or more, longest first.
Each is attributed to the line BEFORE it, which is what was running.

   3m12s  after  09:14:02 | Refreshing state...

The gap belongs to the line before it: the stamp on a line is when that line was produced, so a long interval means the operation named on the preceding line is what took the time. A log where every line carries the same timestamp is reported as an error, not as "no gaps".

Status

control CLI over git works, tested end to end against a stock station
heliograph bootstrap works: the binary plants the station it was built with
--gaps works
MCP server (heliograph mcp) works
bash station in use over git: the loop, the gates, the capture, Azure hosts, Kubernetes, the Windows launcher
relay half a transport. The station side is written and complete - it fetches requests, publishes status and delivers the finished log - and the relay server is deployed. No CLI command can select it
file share, bundle, object store control side only. The CLI implements all three; the station has no transport for any of them
Azure Blob works end to end, through drop.sh in the station payload rather than the CLI. It is what the Azure Function host uses
PowerShell station planned: A8
documentation site heliograph.dbhq.uk: the CLI, the transports, and the far side - the station, the runner, steps, hosts, Azure, Windows, containers, services, secrets, security and the capture contract

A transport that works on one side of the gap is not a transport, so this table names both sides. Git is the one the CLI drives end to end; what the others still need, and in what order, is the roadmap.

The relay

Both sides dial out over ordinary HTTPS, so an estate needs no git host, no storage account and no VNet. Hosted, and self-hostable from the same binary.

Not yet usable end to end. The station side is complete and the server is deployed; no CLI command can select it, so the near side is the missing half.

The relay cannot read your logs, and cannot make a station run anything. That second half is the one that matters: a relay able to forge a request would be code execution inside every estate at once. Content is end-to-end encrypted with keys the relay never holds, and every message is signed. Nothing bespoke - age primitives plus Ed25519. The full account, including what DBHQ can and cannot honestly claim, is in docs/specs/2026-09-06-relay-encryption-design.md. The relay server is its own repository, dbhq-uk/heliograph-relay, because it holds no keys and must be publicly, obviously incapable of reading anything it carries.

What it will not do

Give you access you do not have. It does not tunnel, proxy or hold a connection open to a host you control, and there is nothing here to punch through a firewall with. A raw TCP transport was considered and dropped for exactly that reason: a persistent reverse connection is a C2 channel by any blue team's definition, and that sentence is a large part of why this class of tool is permitted in regulated estates.

Every command runs on the far side because someone with legitimate access chose to run it.

Layout

cmd/heliograph/         the control CLI, and `heliograph mcp`
cmd/heliograph-seal/    key generation for the relay transport
cmd/heliograph-site/    the static site generator
internal/transport/     git | relay | share | bundle | objstore
internal/bootstrap/     `heliograph bootstrap`: plants the embedded station
internal/wire/          the request and status documents that cross the gap
internal/seal/          sign-then-encrypt, for the relay
internal/logfile/       gap analysis
internal/mcp/           JSON-RPC over stdio, no dependencies
internal/estate/        which transport a name refers to
internal/plant/         what to send the operator
station/bash/           the bash station: everything that runs on the far side
station/bootstrap.sh    the no-CLI bootstrap: clone this repo, run it by hand
skills/heliograph/      the agent skill: drives the CLI, and nothing else
tests/                  the station's own suite, conformance contract included
site/content/           the documentation, one source, three renderings
infra/                  terraform: DNS, Pages, R2 state
docs/specs/             the designs, written before the code

The two halves used to be separate repositories, split along Go-versus-bash rather than along the gap, and every reader had to work out which half they were looking at. dbhq-uk/heliograph-skill was merged in on 2026-09-08 with its full history; the reasoning is in docs/specs/2026-09-08-station-and-skill-merge.md.

Development

PLAN.md is where the work stands: what has landed, what is next, and which defects are known and unfixed. CONTRIBUTING.md covers working on it and AGENTS.md is for an AI agent doing so. The skill is skills/heliograph/SKILL.md; docs/dev-setup.md sets it up from source with live edits.

Licence

MIT (c) 2026 DBHQ Consulting Ltd

from github.com/dbhq-uk/heliograph

Installing dbhq-uk/heliograph

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/dbhq-uk/heliograph

FAQ

Is dbhq-uk/heliograph MCP free?

Yes, dbhq-uk/heliograph MCP is free — one-click install via Unyly at no cost.

Does dbhq-uk/heliograph need an API key?

No, dbhq-uk/heliograph runs without API keys or environment variables.

Is dbhq-uk/heliograph hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install dbhq-uk/heliograph in Claude Desktop, Claude Code or Cursor?

Open dbhq-uk/heliograph on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare dbhq-uk/heliograph with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs