MCP server providing Microsoft Outlook integration via Graph API: - Email: list, search, read, send, thread reconstruction - Calendar: list, create, decline, cancel, delete events - Folders: list, create, move emails - Inbox rules: list, create, reorder - MSAL device code flow auth with persistent token cache - Test mode with mock data - Comprehensive README with setup, config, and tool reference 20 MCP tools across 5 modules. Node.js >= 14. MIT license.
13 lines
483 B
Text
13 lines
483 B
Text
# Microsoft Azure App Registration
|
|
# Required: your app registration client ID
|
|
MS_CLIENT_ID=your_client_id_here
|
|
|
|
# Optional: only needed for confidential client app registrations (client secret app regs).
|
|
# Leave blank or omit for public client apps (device code flow with "Allow public client flows" enabled).
|
|
# MS_CLIENT_SECRET=
|
|
|
|
# Optional: Enable test mode (uses mock data instead of real API calls)
|
|
USE_TEST_MODE=false
|
|
|
|
# Optional: Enable verbose debug logging
|
|
DEBUG_MODE=false
|