To attach counts which indicate how many people bookmarked my entries to del.icio.us, I wrote a tiny plugin script pasted below. I'm sure that anyone must have written a script like it yet, but it's probably much faster to write it for myself than to google for it.
use strict;
use Digest::MD5 ();
use MT::Template::Context;
MT::Template::Context->add_tag(DeliciousCount => sub {
my $ctx = shift;
my $link = $ctx->stash('entry') ? $ctx->stash('entry')->permalink
: $ctx->stash('blog')->site_url;
my $digested = Digest::MD5::md5_hex($link);
return qq{<a href="http://del.icio.us/url/$digested"><img src="http://del.icio.us/feeds/img/savedcount/$digested?aggregate"></a>};
});
1;