Get media url (featured image) with wp-cli

Assuming the attachment ID were in a variable of $attachment_id you could use the following command:

# get attachment URL
wp db query "SELECT guid FROM $(wp db tables *_posts) WHERE ID=\"$attachment_id\"" | head -n 2 | tail -1

I use the $(wp db tables *_posts) bit just in case the wp_ table prefix is non-default.