It is a hack but I needed this also so I did the following…
OPEN wordtwit.php
FIND:
$message = $settings['message'];
$message = str_replace( '[title]', $my_post->post_title, $message );
BELLOW ADD
$my_cat = get_the_category( $my_post->ID );
$category = $my_cat[0]->cat_name;
$message = str_replace ( '[category]', $category, $message );