tofupilot stations
Last updated on May 21, 2026
The stations command manages Stations.
ls
The ls subcommand lists stations. Filters are --limit, --cursor, --search-query, and --procedure-ids.
tofupilot stations ls --procedure-ids proc_abcget
The get subcommand fetches a station by ID.
tofupilot stations get --id station_abcget-current
The get-current subcommand returns the station the CLI is logged in as, which is useful in scripts running on a station.
tofupilot stations get-currentcreate
The create subcommand creates a station. The required flag is --name, and --procedure-id is optional to link at creation time.
tofupilot stations create --name "Test Bench #1" --procedure-id proc_abcupdate
The update subcommand updates a station by ID, and optional flags are --name, --image-id, and --team-id.
tofupilot stations update --id station_abc --name "Bench A"rm
The rm subcommand deletes a station by ID.
tofupilot stations rm --id station_abcHow is this guide?