I tried looking this up, but I didn’t see anything in the Wiki. Are these fields exposed to Picard? I want to grab the VGMDB, Discogs, and RYM URLs and set them as tags.
$if($in($lower(%url%),vgmdb),$set(VGMDB ALBUM URL,%url%))
Does MusicBrainz expose these URLs in the standard API response sent to Picard?
If so does Picard process those responses and if not, can you write an Album plugin to extract those responses?
If the answer to either of these questions is “no”, then you will need a plugin, either to process the existing response or to make additional web calls and process those responses.
A quick test on Abba Gold using the API call Picard makes with Release (and Track) relationships shows that the Release URLs are provided by MB:
Writing a plugin to process these would not be difficult (and you can probably use an existing plugin as a base to tweak), but you would need to decide what metadata tags to put them into bearing in mind the very wide variety of types of URL that can be in a release record.
Also, bear in mind that Artists also have URLs that you might find useful / interesting and these would need a plugin (like my own Artist Official Website) plugin that makes extra API calls to get these.