What can you do with it?
Microsoft Outlook allows you to manage your email, calendar, and tasks programmatically through the Microsoft Graph API. You can send and receive emails, create and manage calendar events, work with todo lists and tasks, handle email attachments, organize messages in folders, and search through your communications. This integration is perfect for email automation, calendar scheduling, task management, and unified communication workflows.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation to perform with Outlook
Tools
Send Email
Send an email message Parameters:to
(required) - Recipient email addresssubject
(required) - Email subjectbody
(required) - Email contentcc
(optional) - CC recipientsimportance
(optional) - Email importance level
List Emails
Get a list of emails from your inbox Parameters:folder
(optional) - Mail folder to list fromlimit
(optional) - Number of emails to retrieveunread-only
(optional) - Show only unread messages
Search Emails
Search for emails by query Parameters:query
(required) - Search query textfolder
(optional) - Folder to search in
Create Calendar Event
Create a new calendar event Parameters:subject
(required) - Event titlestart
(required) - Start date/time (ISO format)end
(required) - End date/time (ISO format)location
(optional) - Event locationattendees
(optional) - Comma-separated email addressesbody
(optional) - Event description
List Calendar Events
Get calendar events within a date range Parameters:start-date
(optional) - Start date for event listingend-date
(optional) - End date for event listinglimit
(optional) - Maximum number of events
List Todo Lists
Get all todo lists Parameters:- None required
Create Task
Create a new task in a todo list Parameters:list-id
(required) - ID of the todo listtitle
(required) - Task titledue-date
(optional) - Due date for the taskimportance
(optional) - Task importance (low, normal, high)body
(optional) - Task description
Download Attachments
Download attachments from an email Parameters:email-id
(required) - ID of the email with attachments