Skip to Content
ResourcesIntegrationsProductivity & DocsMicrosoft Outlook Calendar

Microsoft Outlook Calendar

Service domainCALENDAR
Microsoft Outlook Calendar icon
Arcade Optimized

Arcade.dev LLM tools for Outlook Calendar

Author:Arcade
Version:0.1.0
Auth:User authorization via the Microsoft auth provider
7tools
PyPI VersionPython VersionsWheel StatusDownloadsLicense

Available tools(7)

7 of 7 tools
Operations
Behavior
Tool nameDescriptionSecrets
Create an event in the authenticated user's default calendar. Ignores timezone offsets provided in the start_date_time and end_date_time parameters. Instead, uses the user's default calendar timezone to filter events. If the user has not set a timezone for their calendar, then the timezone will be UTC.
Get an event by its ID from the user's calendar.
List all calendars the user has access to. Returns the user's own calendars plus any shared or delegated calendars. Each calendar includes its ID, name, owner, and permissions. Use a calendar_id from the results to target a specific calendar in other calendar tools.
List attachment metadata for a calendar event. Returns metadata only (name, size, type, etc.). Attachment content is not included. Use this tool when the user wants to know what files are attached to a calendar event or meeting. Pass a calendar_id to list attachments on events in shared or delegated calendars.
List events in the user's calendar in a specific time range. Ignores timezone offsets provided in the start_date_time and end_date_time parameters. Instead, uses the user's default calendar timezone to filter events. If the user has not set a timezone for their calendar, then the timezone will be UTC.
Search calendar events within a time range with optional filters. Returns events filtered by subject keyword, attendee, organizer, importance, or online-meeting status. Results are in chronological order. By default, searches the user's primary calendar. Pass a calendar_id to search a shared or delegated calendar. Event bodies are truncated to 200 characters for efficient skimming. Use the event_id from the results to retrieve full event details.
Get information about the current user and their Outlook Calendar environment.

Selected tools

No tools selected.

Click "Show all tools" to add tools.

Requirements

Select tools to see requirements

#

MicrosoftOutlookCalendar.CreateEvent

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Create
Service domains
Calendar
MCP behavior
No

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

No

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

Create an event in the authenticated user's default calendar. Ignores timezone offsets provided in the start_date_time and end_date_time parameters. Instead, uses the user's default calendar timezone to filter events. If the user has not set a timezone for their calendar, then the timezone will be UTC.

Parameters

ParameterTypeReq.Description
subjectstringRequiredThe text of the event's subject (title) line.
bodystringRequiredThe body of the event
start_date_timestringRequiredThe datetime of the event's start, represented in ISO 8601 format. Timezone offset is ignored. For example, 2025-04-25T13:00:00
end_date_timestringRequiredThe datetime of the event's end, represented in ISO 8601 format. Timezone offset is ignored. For example, 2025-04-25T13:30:00
locationstringOptionalThe location of the event
attendee_emailsarray<string>OptionalThe email addresses of the attendees of the event. Must be valid email addresses e.g., [email protected].
is_online_meetingbooleanOptionalWhether the event is an online meeting. Defaults to False
custom_meeting_urlstringOptionalThe URL of the online meeting. If not provided and is_online_meeting is True, then a url will be generated for you

Requirements

No secrets required

Output

Type:jsonA dictionary containing the created event details

No code example available for this tool.

#

MicrosoftOutlookCalendar.GetEvent

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

Get an event by its ID from the user's calendar.

Parameters

ParameterTypeReq.Description
event_idstringRequiredThe ID of the event to get

Requirements

No secrets required

Output

Type:jsonA dictionary containing the event details

No code example available for this tool.

#

MicrosoftOutlookCalendar.ListCalendars

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

List all calendars the user has access to. Returns the user's own calendars plus any shared or delegated calendars. Each calendar includes its ID, name, owner, and permissions. Use a calendar_id from the results to target a specific calendar in other calendar tools.

Parameters

ParameterTypeReq.Description
limitintegerOptionalMaximum number of calendars to return. Max is 200. Defaults to 50.
pagination_tokenstringOptionalThe pagination token to continue a previous request.

Requirements

No secrets required

Output

Type:jsonA dictionary containing a list of available calendars.

No code example available for this tool.

#

MicrosoftOutlookCalendar.ListEventAttachments

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

List attachment metadata for a calendar event. Returns metadata only (name, size, type, etc.). Attachment content is not included. Use this tool when the user wants to know what files are attached to a calendar event or meeting. Pass a calendar_id to list attachments on events in shared or delegated calendars.

Parameters

ParameterTypeReq.Description
event_idstringRequiredThe ID of the calendar event to list attachments for.
calendar_idstringOptionalID of a specific calendar containing the event, including shared and delegated ones. When omitted, searches the user's default calendar.
limitintegerOptionalThe maximum number of attachments to return. Max is 100. Defaults to 25.
pagination_tokenstringOptionalThe pagination token to continue a previous request.

Requirements

No secrets required

Output

Type:jsonA dictionary containing a list of attachment metadata objects.

No code example available for this tool.

#

MicrosoftOutlookCalendar.ListEventsInTimeRange

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

List events in the user's calendar in a specific time range. Ignores timezone offsets provided in the start_date_time and end_date_time parameters. Instead, uses the user's default calendar timezone to filter events. If the user has not set a timezone for their calendar, then the timezone will be UTC.

Parameters

ParameterTypeReq.Description
start_date_timestringRequiredThe start date and time of the time range, represented in ISO 8601 format. Timezone offset is ignored. For example, 2025-04-24T19:00:00
end_date_timestringRequiredThe end date and time of the time range, represented in ISO 8601 format. Timezone offset is ignored. For example, 2025-04-24T19:30:00
limitintegerOptionalThe maximum number of events to return. Max 1000. Defaults to 10

Requirements

No secrets required

Output

Type:jsonA dictionary containing a list of events

No code example available for this tool.

#

MicrosoftOutlookCalendar.SearchEvents

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

Search calendar events within a time range with optional filters. Returns events filtered by subject keyword, attendee, organizer, importance, or online-meeting status. Results are in chronological order. By default, searches the user's primary calendar. Pass a calendar_id to search a shared or delegated calendar. Event bodies are truncated to 200 characters for efficient skimming. Use the event_id from the results to retrieve full event details.

Parameters

ParameterTypeReq.Description
subjectstringOptionalFilter events whose subject contains this text (case-insensitive). Defaults to None (no subject filter).
attendee_emailsarray<string>OptionalFilter events that include these attendees by exact email address. Multiple emails are combined with AND (all must be attendees). Defaults to None (no attendee filter).
organizer_namestringOptionalFilter events organized by this person's display name. Note: filtering by organizer email address is not supported by the Microsoft Graph API. Use the organizer's display name instead. Defaults to None (no organizer filter).
importancestringOptionalFilter by event importance level. Defaults to None (no filter).
lownormalhigh
is_online_meetingbooleanOptionalFilter for online meetings (True) or in-person meetings (False). Defaults to None (no filter).
start_date_timestringOptionalThe start of the time range, in ISO 8601 format. Timezone offset is ignored; the user's calendar timezone is used. Defaults to None (90 days before today).
end_date_timestringOptionalThe end of the time range, in ISO 8601 format. Timezone offset is ignored; the user's calendar timezone is used. Defaults to None (90 days after today).
calendar_idstringOptionalID of a specific calendar to search, including shared and delegated ones. When omitted, searches the user's default calendar.
include_cancelledbooleanOptionalWhether to include cancelled events in the results. Defaults to False.
limitintegerOptionalMaximum number of events to return. Max is 200. Defaults to 25.
pagination_tokenstringOptionalThe pagination token to continue a previous request.

Requirements

No secrets required

Output

Type:jsonA dictionary containing a list of matching calendar events.

No code example available for this tool.

#

MicrosoftOutlookCalendar.WhoAmI

Execution hints

Signals for MCP clients and agents about how this tool behaves.

Operations
Read
Service domains
Calendar
MCP behavior
Yes

Reads data without modifying any state in the target system.

No

May permanently delete or overwrite data in the target system.

Yes

Repeated calls with the same inputs produce no additional effect.

Yes

Communicates with external APIs, databases, or other services.

Get information about the current user and their Outlook Calendar environment.

Parameters

No parameters required.

Requirements

No secrets required

Output

Type:jsonGet comprehensive user profile and Outlook Calendar information.

No code example available for this tool.

Last updated on