Skip to main content
Reference Last updated: 6 March 2026

Tools Reference - Outlook Assistant

Quick reference for all 20 consolidated MCP tools across 9 modules. Each tool includes MCP safety annotations (readOnlyHint, destructiveHint, idempotentHint).

Quick reference for all 20 consolidated MCP tools across 9 modules. Each tool includes MCP safety annotations (readOnlyHint, destructiveHint, idempotentHint).

Authentication (1 tool)

ToolActionsSafety
authstatus (default), authenticate, aboutmoderate write

Email (6 tools)

ToolDescriptionSafetyKey Parameters
search-emailsSearch, list, delta sync, conversationsread-onlyquery, from, to, folder, deltaMode, conversationId, groupByConversation, internetMessageId
read-emailRead content or forensic headersread-onlyid, headersMode, groupByType, importantOnly
send-emailSend email with safety controlsdestructiveto, subject, body, dryRun, cc, bcc, importance
update-emailMark read/unread, flag/unflag/completeidempotentaction (required), id, ids, dueDateTime
attachmentsList, view, or download attachmentsmoderate writeaction (list/view/download), messageId, attachmentId
exportExport emails to various formatsmoderate writetarget (message/messages/conversation/mime), id, format, outputDir

search-emails modes

ModeTriggerDescription
ListNo query paramsLists recent emails (like old list-emails)
Searchquery, from, to, etc.Full search with filters and KQL
DeltadeltaMode: trueIncremental sync, returns deltaToken
Conversation listgroupByConversation: trueGroups by thread
Conversation getconversationIdAll messages in a thread
Message-ID lookupinternetMessageIdFind by RFC Message-ID header

Personal accounts: The query and kqlQuery parameters use Microsoft’s $search API which has limited support on personal Outlook.com accounts. Outlook Assistant handles this automatically with progressive search fallback — if $search returns no results, it tries OData filters, boolean filters, and recent message listing. For the most direct results on personal accounts, use structured filters (from, subject, to, receivedAfter, hasAttachments, unreadOnly).

Delta sync is designed for inbox monitoring workflows. The first call returns current emails and a deltaToken; subsequent calls with that token return only new, modified, and deleted messages. See Monitor Inbox with Delta Sync.

update-email actions

ActionDescriptionParams
mark-readMark as readid (single)
mark-unreadMark as unreadid (single)
flagFlag for follow-upid or ids (batch), dueDateTime, startDateTime
unflagClear flagid or ids (batch)
completeMark flag as completeid or ids (batch)

Export formats

FormatUse Case
mime / emlFull MIME with headers — archival and forensics
mboxUnix MBOX archive — batch export conversations
markdownHuman-readable — paste into documents
jsonStructured data — programmatic processing
htmlFormatted — visual archival of threads

Content-type handling: The attachments tool handles text and binary content types. Text attachments (text/*, application/json, application/xml) are displayed inline; binary attachments require download. The contentType field is included in attachment listings.

Calendar (3 tools)

ToolDescriptionSafetyKey Parameters
list-eventsList upcoming eventsread-onlycount
create-eventCreate new eventmoderate writesubject, start, end, attendees, body. Times use configured timezone (default: Australia/Melbourne) — omit Z suffix for local time
manage-eventDecline, cancel, or deletedestructiveaction (decline/cancel/delete), eventId, comment

Folder (1 tool)

ToolActionsSafetyKey Parameters
folderslist (default), create, move, stats, deletedestructivename, emailIds, targetFolder, folder, folderId, folderName, outputVerbosity

Rules (1 tool)

ToolActionsSafetyKey Parameters
manage-ruleslist (default), create, reorder, deletedestructivename, fromAddresses, moveToFolder, ruleName, ruleId, sequence

Contacts (2 tools)

ToolDescriptionSafetyKey Parameters
manage-contactFull CRUD: list (default), search, get, create, update, deletemoderate writeaction, query, id, displayName, email, count
search-peopleRelevance-based search (People API)read-onlyquery, count

Categories (3 tools)

ToolDescriptionSafetyKey Parameters
manage-categoryCRUD: list (default), create, update, deletemoderate writeaction, displayName, color, id
apply-categoryApply/add/remove categories on messagesmoderate writemessageId/messageIds, categories, action
manage-focused-inboxFocused Inbox overrides: list (default), set, deletemoderate writeaction, emailAddress, classifyAs

Category colours

preset0-preset24: Red, Orange, Brown, Yellow, Green, Teal, Olive, Blue, Purple, etc.

Settings (1 tool)

ToolActionsSafetyKey Parameters
mailbox-settingsget (default), set-auto-replies, set-working-hoursidempotentsection, enabled, startDateTime, endDateTime, internalReplyMessage, startTime, endTime, daysOfWeek

Advanced (2 tools)

ToolDescriptionSafetyKey Parameters
access-shared-mailboxRead shared mailboxread-onlysharedMailbox, folder, count
find-meeting-roomsSearch meeting roomsread-onlyquery, building, capacity

Safety Annotations

CategoryToolsClient Behaviour
Read-only (6)search-emails, read-email, list-events, search-people, access-shared-mailbox, find-meeting-roomsAuto-approved by MCP clients that support annotations
Destructive (4)send-email, manage-event, folders, manage-rulesClient prompts for confirmation
Idempotent (2)update-email, mailbox-settingsSafe to retry
Moderate write (7)All othersNormal approval flow

send-email Safety Controls

ControlConfigDefault
Dry-run previewdryRun: true paramDisabled
Session rate limitOUTLOOK_MAX_EMAILS_PER_SESSION envUnlimited (0)
Recipient allowlistOUTLOOK_ALLOWED_RECIPIENTS envAllow all

Output Verbosity

LevelDescription
minimalEssential fields only (token efficient)
standardCommon fields (default)
fullAll available fields

Common Patterns

// List recent emails
search-emails(folder: "inbox", count: 10)

// Search with filters
search-emails(from: "boss@company.com", receivedAfter: "2024-01-01")

// Preview email before sending
send-email(to: "...", subject: "...", body: "...", dryRun: true)

// Get forensic headers
read-email(id: "...", headersMode: true, importantOnly: true)

// Export conversation to markdown
export(target: "conversation", conversationId: "...", format: "markdown", outputDir: "/tmp")

// Set out-of-office
mailbox-settings(action: "set-auto-replies", enabled: true, internalReplyMessage: "I'm away...")

// Flag email for follow-up
update-email(action: "flag", id: "...", dueDateTime: "2026-03-01T09:00:00Z")

// Access shared mailbox
access-shared-mailbox(sharedMailbox: "team@company.com", folder: "inbox")

// Delta sync (initial — returns emails + deltaToken)
search-emails(deltaMode: true)

// Delta sync (incremental — returns only changes)
search-emails(deltaMode: true, deltaToken: "previous-token...")
Was this helpful?

Related Articles