Control rclone's Remote Control daemon (RC) from Raycast
Browse && create remotes, start jobs, and manage mounts without leaving the command palette.
- Remote inventory – list every remote defined in
rclone.conf, preview its options, inspect mount points, and trigger edits or deletion inline. - Guided remote creation – fetch provider metadata from
/config/providers, surface both basic and advanced fields, and validate inputs before creating a new remote. - One-click daemon management – the
Start Daemoncommand checks for a running RC server, launchesrclone rcd --rc-no-authwhen needed, and can stop the spawned process. - Operation catalog – run
mount,copy,copyfile,copyurl,sync,move,movefile,delete,deletefile, andpurgewith forms that prefill flag defaults from your global rclone config. - Smart flag editing – filter, performance, networking, and validation flags are grouped with inline docs, only send overrides that differ from defaults, and execute jobs asynchronously so Raycast stays responsive.
- Raycast with this extension installed.
rcloneavailable on your$PATH(v1.63 or newer recommended).- An RC daemon reachable at
http://localhost:5572
Start the daemon manually:
rclone rcd --rc-no-auth…or launch the Start Daemon command from this extension, which spawns the same process, verifies it’s reachable, and reports its status without leaving Raycast.
- Install – add the Rclone extension from the Raycast Store (or
ray installwhile developing). - Launch the daemon – use the included
Start Daemoncommand or runrclone rcd --rc-no-authyourself. - Manage remotes – open
List Remotesto inspect, edit, delete, or view mount points; useCreate Remotefor new backends. - Run operations – open
Run Operation, pick an action, review optional flags, and submit. Each job calls the matching RC endpoint (for example/sync/copyfor Copy) and displays success/failure toasts.
| Command | Purpose |
|---|---|
List Remotes |
Browse remotes, open details, inspect mount points, and jump into edit or operation flows |
Create Remote |
Guided creation form with provider metadata, advanced options, and validation |
Run Operation |
Catalog of RC operations (mount/copy/sync/move/delete/purge variants) with flag controls |
Start Daemon |
Ensure rclone rcd --rc-no-auth is running; view status and stop the spawned process |
- Remote detail views surface current mount points from
/mount/listmountsso you can unmount without touching the CLI. - Operation forms pull global defaults from
/options/get, so you only override what matters; filters live under their own section for clarity. - Every action hits the RC HTTP API via
rclone-sdk. If calls start failing, confirm the daemon is reachable athttp://localhost:5572.