category permalinks

You need to modify the rewrite argument when you register your post type:

$args = array(
    // [...]
    'rewrite' => array( 'slug' => "Tours" ),
);
register_post_type( mc_tours, $args );