Hi James. Thanks for your detailed question.
At this time, our main events calendar page (typically at yoursite.com/events/ unless you customize the URL) is actually a WordPress custom post type archive for the tribe_events post type.
In the not-too-distant future, all our calendar views will be able to be shortcode-ized, which will allow you to have both /events but also /a-page-with-our-shortcodes.
At this time, if you want to insert anything (such as <meta> tags) into the <head> of the post type archive views, you could hook into wp_head when is_post_type_archive( ‘tribe_events’ ) is true. For single event pages you could use the is_singular( ‘tribe_events’ ) conditional.
I hope this helps. Please let me know if you have any follow-up questions on this topic.