Skip to main content
How-To Guides Last updated: 6 March 2026

How to Access Shared Mailboxes

Read emails from shared mailboxes your account has been granted access to, such as team inboxes or service accounts.

Read emails from shared mailboxes like team inboxes, support queues, or service accounts that your Microsoft 365 account has access to.

Read from a Shared Mailbox

“Check the support inbox for new emails”

tool: access-shared-mailbox
params:
  sharedMailbox: "support@company.com"

This returns the 25 most recent emails from the shared mailbox’s inbox.

Browse a Specific Folder

tool: access-shared-mailbox
params:
  sharedMailbox: "support@company.com"
  folder: "Escalated"

Control the Number of Results

tool: access-shared-mailbox
params:
  sharedMailbox: "team@company.com"
  count: 10
  outputVerbosity: "minimal"

Shared mailbox email list with mailbox name in header

Required Permissions

Your Azure app registration needs the Mail.Read.Shared permission:

  1. Go to Azure Portal → App registrations → your Outlook Assistant app
  2. Under API permissions, add Microsoft Graph delegated permission: Mail.Read.Shared
  3. Grant admin consent if required by your organisation

Your Microsoft account must also have been granted access to the shared mailbox by your Exchange administrator.

Parameter Reference

ParameterWhat it doesDefault
sharedMailboxEmail address of the shared mailbox (required)
folderFolder to read frominbox
countNumber of emails to return (max 50)25
outputVerbosityminimal, standard, or fullstandard

Troubleshooting

ProblemCauseFix
”Access denied” or 403 errorMissing Mail.Read.Shared permissionAdd the permission in Azure Portal
”Mailbox not found”Incorrect email address or no access grantedVerify the address and check with your Exchange admin
Empty resultsMailbox is empty or folder doesn’t existTry folder: "inbox" to confirm access

Tips

  • This tool is read-only — you can’t send from a shared mailbox through Outlook Assistant
  • Use outputVerbosity: "minimal" for quick checks on high-volume shared inboxes
  • Auto-approved by MCP clients that support annotations (read-only tool)
Was this helpful?

Related Articles