Does WP-CLI support updating multiple options via a single command?

WP CLI’s option update command only accepts one key per call, but you can use other commands to handle updating multiple keys in sequence. The command page in the Codex has some examples.

# Update one option on multiple sites using xargs.
$ wp site list --field=url | xargs -n1 -I {} sh -c 'wp --url={} option update my_option my_value'

In this example, xargs is used to build commands based on input.

Depending on your data structure, you should be able to use xargs and some wp cli commands in combination to achieve the result you’re looking for.