outlook-mcp/mailbox/index.js
Seton Carmichael e70840552d feat(outlook-mcp): shared mailbox targeting, discovery, and scopes (v1.1.0)
Add optional mailbox (UPN/SMTP) routing on email/folder/thread tools via
users/{upn}/... and X-AnchorMailbox. New list-mailboxes probes primary,
OUTLOOK_SHARED_MAILBOXES seeds, cache, and candidates. Send supports
mailbox-rooted sendMail and onBehalfOf. MSAL requests Mail.*.Shared;
check-auth-status reports token scp gaps. Docs, env example, tests.
2026-08-24 08:41:05 -04:00

11 lines
210 B
JavaScript

/**
* Mailbox discovery module
*/
const { listMailboxesTool, handleListMailboxes } = require('./list');
const mailboxTools = [listMailboxesTool];
module.exports = {
mailboxTools,
handleListMailboxes
};