How can I count articles retrieved by tags

WP_Query has a post_count property: codex.

$recentPosts = new WP_Query($args);
$count = $recentPosts->post_count;