Skip to main content
Glama
desek

outlook-local-mcp

Outlook Local MCP Server

A single-binary MCP server that connects Claude Desktop and Claude Code to Microsoft Outlook via the Microsoft Graph API. Manage your calendar, read email, and compose drafts without leaving your AI assistant.

Install

Go binary (recommended):

go install github.com/desek/outlook-local-mcp/cmd/outlook-local-mcp@latest

Docker / OCI:

docker run -i --rm \
  -v outlook-mcp-auth:/data/auth \
  -e OUTLOOK_MCP_TENANT_ID=<tenant> \
  -e OUTLOOK_MCP_CLIENT_ID=<client> \
  ghcr.io/desek/outlook-local-mcp:latest

See Container deployment for the full client config snippet, and Container runtime for the keychain trade-off and image variants.

Claude Desktop extension (no terminal required):

Download the .mcpb file from the latest release and open it in Claude Desktop via Settings > Extensions > Install from file.

Related MCP server: outlook-mcp-server

Tool invocation shape

All operations use four aggregate domain tools dispatched by an operation verb:

{tool: "calendar", args: {operation: "list_events", date: "today"}}
{tool: "mail",     args: {operation: "list_folders"}}
{tool: "account",  args: {operation: "list"}}
{tool: "system",   args: {operation: "status"}}

Call any domain with operation: "help" to list its verbs and parameters.

Documentation

Guide

Contents

docs/readme.md

Project overview and feature list

docs/quickstart.md

Prerequisites, installation, and first tool call

docs/concepts.md

Output tiers, multi-account model, mail gating, OAuth scopes, observability, and more

docs/troubleshooting.md

Auth errors, Keychain issues, Graph throttling, and account lifecycle

For LLM clients: see llms.txt for a machine-readable index.

Acknowledgements

Support and testing by GigWhere ❤️

License

MIT License. See LICENSE for details.

Available Tools

4 tools
accountA
Destructive

Account management for Microsoft accounts connected to the Outlook MCP server.

Set the required operation parameter to one of the verbs below. Each line names the verb, what it does, and the parameters that verb requires. Optional parameters are omitted here; call operation="help" for the full parameter reference.

  • help: show detailed documentation for all verbs or a single named verb. No required parameters.

  • add: add and authenticate a new Microsoft account (browser/device_code/auth_code). Requires: label.

  • remove: remove an account from the registry and clear its tokens (irreversible). Requires: label.

  • list: list all registered accounts with label, UPN, state, and auth_method. No required parameters.

  • login: re-authenticate a disconnected account without removing it. Requires: label.

  • logout: disconnect an account without removing it; preserves config for login. Requires: label.

  • refresh: force a token refresh for an authenticated account; returns new expiry. Requires: label.

ParametersJSON Schema
NameRequiredDescriptionDefault
labelNoUnique label for the account (1-64 chars, alphanumeric/underscore/hyphen).
outputNoOutput mode: 'text' (default), 'summary', or 'raw'.
client_idNoOAuth client ID. Defaults to the server's configured client ID.
operationYesThe operation to perform. Call with operation="help" for full documentation.
tenant_idNoEntra ID tenant ID. Defaults to the server's configured tenant ID.
auth_methodNoAuthentication method: 'browser', 'device_code', or 'auth_code'. Defaults to the server's configured method.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include destructiveHint=true, and the description adds behavioral context by noting that 'remove' is irreversible and 'logout' preserves configuration. This goes beyond the annotations. However, it does not disclose details like rate limits, authorization requirements, or failure behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a brief purpose statement, an explanation of the verb list format, and then concise bullet-like lines for each operation. No extraneous information, front-loaded with the tool's scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters, 7 operations) and no output schema, the description covers all operations and their required parameters. It directs to help for full details but lacks information on return values or error handling, which would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema covers all parameters with descriptions (100% coverage). The description adds meaning by grouping parameters per verb and indicating which are required for each operation, enhancing understanding beyond the schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool is for 'Account management for Microsoft accounts connected to the Outlook MCP server.' It lists specific operations (add, remove, list, login, logout, refresh, help) with brief explanations, distinguishing it from sibling tools like mail, calendar, and system.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use each operation, including required parameters and a reference to operation='help' for full details. While it does not explicitly state when not to use this tool, the sibling tool names (mail, calendar, system) make the context clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

calendarA
Destructive

Calendar operations for Microsoft Outlook via Microsoft Graph.

Set the required operation parameter to one of the verbs below. Each line names the verb, what it does, and the parameters that verb requires. Optional parameters are omitted here; call operation="help" for the full parameter reference.

  • help: show detailed documentation for all verbs or a single named verb. No required parameters.

  • list_calendars: list all calendars accessible to the authenticated user. No required parameters.

  • list_events: list events in a time window; expands recurring events into occurrences. No required parameters.

  • get_event: get full event details by ID; bodyPreview by default, full body via output=raw. Requires: event_id.

  • search_events: search events by subject, date range, importance, sensitivity, and other filters. No required parameters.

  • create_event: create a personal calendar event (no attendees); use create_meeting for meetings. Requires: subject, start_datetime.

  • update_event: update a personal event (PATCH); use update_meeting to change attendees. Requires: event_id.

  • delete_event: permanently delete an event by ID (organizer deletions notify attendees). Requires: event_id.

  • respond_event: accept, tentatively accept, or decline an invitation; notifies organizer. Requires: event_id, response.

  • reschedule_event: move a personal event to a new start time, preserving its original duration. Requires: event_id, new_start_datetime.

  • create_meeting: create a meeting with attendees; sends invitations; confirm with user first. Requires: subject, start_datetime, attendees.

  • update_meeting: update a meeting including attendee changes; sends notifications; confirm first. Requires: event_id.

  • cancel_meeting: cancel a meeting and notify attendees; organizer only; confirm with user first. Requires: event_id.

  • reschedule_meeting: move a meeting to a new start time, preserving duration; notifies attendees. Requires: event_id, new_start_datetime.

  • get_free_busy: get free/busy availability for a time range; returns busy periods with times. No required parameters.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyNoEvent body content (HTML or plain text).
dateNoDate shorthand: 'today', 'tomorrow', 'this_week', 'next_week', or ISO 8601 date (YYYY-MM-DD). Expands to start/end boundaries in the configured timezone. When start_datetime/end_datetime are also provided, they take precedence.
queryNoText to search for in event subjects (case-insensitive).
outputNoOutput mode: 'text' (default), 'summary', or 'raw'.
accountNoAccount label or UPN to use. Never assume a default account — always check account list first. Accepts a label (e.g. 'work') or UPN (e.g. 'user@contoso.com'). Disconnected accounts are listed but require login before use.
commentNoOptional message to the organizer explaining your response.
show_asNoFilter by free/busy status: free, tentative, busy, oof, or workingElsewhere.
subjectNoEvent title.
event_idNoThe unique identifier of the event to retrieve.
locationNoLocation display name (e.g. room name, office, or "Microsoft Teams").
responseNoResponse type: 'accept', 'tentative', or 'decline'.
timezoneNoIANA timezone name for returned event times (e.g., America/New_York).
attendeesNoJSON array of attendees: [{"email":"a@b.com","name":"Name","type":"required|optional|resource"}].
operationYesThe operation to perform. Call with operation="help" for full documentation.
categoriesNoComma-separated category names to filter by (matches any, client-side).
importanceNoFilter by importance: low, normal, or high.
is_all_dayNoFilter by all-day event status.
recurrenceNoJSON recurrence object, e.g. {"pattern":{"type":"weekly","interval":1,"daysOfWeek":["monday"]},"range":{"type":"endDate","startDate":"2026-04-15","endDate":"2026-12-31"}}.
calendar_idNoOptional calendar ID. If omitted, uses the default calendar.
max_resultsNoMaximum number of events to return (default 25, max 100).
sensitivityNoFilter by sensitivity: normal, personal, private, or confidential.
end_datetimeNoEnd of the time range in ISO 8601 format (e.g., 2026-03-13T00:00:00Z). Required unless 'date' is provided.
end_timezoneNoIANA timezone for end time. Defaults to server's configured timezone when omitted.
is_cancelledNoFilter by cancellation status.
send_responseNoWhether to send the response to the organizer. Defaults to true.
created_by_mcpNoWhen true, only return events created by this MCP server (server-side filter).
is_reminder_onNoEnable or disable the reminder.
start_datetimeNoStart of the time range in ISO 8601 format (e.g., 2026-03-12T00:00:00Z). Required unless 'date' is provided.
start_timezoneNoIANA timezone for start time, e.g. America/New_York. Defaults to server's configured timezone when omitted.
reminder_minutesNoReminder minutes before start.
is_online_meetingNoSet true to create a Teams online meeting (work/school accounts only).
new_start_datetimeNoNew start time in ISO 8601 without offset, e.g. 2026-04-17T14:00:00.
new_start_timezoneNoIANA timezone for the new start time. Defaults to the server's configured timezone.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate destructiveHint=true and readOnlyHint=false; the description adds specific behavioral details: delete_event 'permanently deletes and notifies attendees', create_meeting 'sends invitations; confirm with user first', etc. It explains the 'output' parameter behavior for get_event. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy due to the number of operations (15), but it is well-structured: a brief intro followed by a bulleted list with each verb, its purpose, and required params. Information is front-loaded with the purpose. Every sentence serves a purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (33 parameters, 15 operations) and no output schema, the description covers each operation's behavior and required inputs. It does not explain return values but that is acceptable without an output schema. The 'help' operation provides a fallback for full documentation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds operational context by listing required parameters per verb (e.g., delete_event requires event_id). It also directs users to operation='help' for full parameter reference. This adds meaning beyond what the schema alone provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool handles 'Calendar operations for Microsoft Outlook via Microsoft Graph' and lists 15 distinct operations with specific verbs and resources. This distinguishes it from sibling tools (account, mail, system) which cover different domains.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear guidance on when to use similar operations (e.g., 'create_event' for personal events vs 'create_meeting' for meetings with attendees). It does not explicitly contrast against sibling tools, but the domain difference is obvious. The 'help' operation is recommended for full documentation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mailA
Read-onlyIdempotent

Mail operations for Microsoft Outlook via Microsoft Graph. By default only read verbs are registered. Additional read verbs (get_conversation, list_attachments, get_attachment) are registered when MailEnabled is configured, and write verbs (create_draft, create_reply_draft, create_forward_draft, update_draft, delete_draft) are registered when MailManageEnabled is configured. The verbs listed below are those active in the current configuration.

Set the required operation parameter to one of the verbs below. Each line names the verb, what it does, and the parameters that verb requires. Optional parameters are omitted here; call operation="help" for the full parameter reference.

  • help: show detailed documentation for all verbs or a single named verb. No required parameters.

  • list_folders: list mail folders (Inbox, Sent, Drafts, etc.) with unread and total counts. No required parameters.

  • list_messages: list messages in a folder or across all folders; filter by date, sender, thread. No required parameters.

  • get_message: get full message details by ID; bodyPreview by default, full body via output=raw. Requires: message_id.

  • search_messages: full-text KQL search across messages; ranked by relevance, not chronologically. Requires: query.

ParametersJSON Schema
NameRequiredDescriptionDefault
fromNoSender email address to filter by (e.g. alice@contoso.com).
queryNoKQL search string. Write a multi-word property value in parentheses, e.g. subject:(Design Review) from:alice@contoso.com; an unparenthesised multi-word value binds only its first token.
outputNoOutput mode: 'text' (default), 'summary', or 'raw'.
accountNoAccount label or UPN to use. Omit to auto-select the default account.
is_readNoFilter by read/unread state. Omit to include both.
is_draftNoFilter by draft state. Omit to include both.
timezoneNoIANA timezone name for the Prefer: outlook.timezone header.
folder_idNoMail folder ID to list messages from. Omit to list from all folders.
operationYesThe operation to perform. Call with operation="help" for full documentation.
importanceNoFilter by message importance.
message_idNoThe unique identifier of the message to retrieve.
provenanceNoFilter to messages created by this MCP server (requires provenance tagging).
flag_statusNoFilter by follow-up flag status.
max_resultsNoMaximum number of folders to return (default 25).
end_datetimeNoEnd of date range (ISO 8601). Filters by receivedDateTime <=.
start_datetimeNoStart of date range (ISO 8601, e.g. 2026-03-12T00:00:00Z). Filters by receivedDateTime >=.
conversation_idNoConversation ID to retrieve all messages in a thread.
has_attachmentsNoFilter by attachment presence. Omit to include both.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses several behavioral traits beyond the readOnlyHint/idempotentHint annotations: it explains that only read verbs are registered by default and that write verbs are gated by MailManageEnabled, notes that search_messages results are ranked by relevance rather than chronologically, and mentions output modes for get_message (bodyPreview vs. raw). It also points to an in-tool help command for further reference. This is rich, non-obvious context that annotations do not provide, and it aligns with the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized for a multi-operation dispatcher. It is front-loaded with the main purpose and configuration context, then uses a clear bulleted list for each verb. Every sentence earns its place, and the structure makes it easy for an agent to scan and find the relevant operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (18 parameters, multiple operations, no output schema), the description is remarkably complete. It explains configuration-dependent verb registration, lists all active verbs with their required parameters, highlights key behavior (relevance ranking, output modes), and directs the agent to operation='help' for full details. There are no nested objects or output schema to worry about, so this is sufficient for correct selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds meaningful semantic value by connecting each operation to its required parameters (e.g., get_message requires message_id) and by explaining the output parameter semantics for get_message. It also clarifies that operation='help' provides the full parameter reference. This goes beyond what the schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Mail operations for Microsoft Outlook via Microsoft Graph.' It then lists each active operation (help, list_folders, list_messages, get_message, search_messages) with a clear action and scope, which fully distinguishes it from sibling tools like account, calendar, and system. The wording is unambiguous and operational.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides strong internal usage guidance by mapping verbs to their purposes and required parameters, and by explaining configuration-dependent availability of read versus write verbs. However, it does not explicitly compare this tool to alternatives (account, calendar, system) or state when not to use it, leaving that to the tool name and domain clarity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

systemA
Read-onlyIdempotent

System diagnostics and authentication utilities for the Outlook MCP server. Start with system.about when troubleshooting; it returns build identity and host environment metadata without requiring authentication.

Set the required operation parameter to one of the verbs below. Each line names the verb, what it does, and the parameters that verb requires. Optional parameters are omitted here; call operation="help" for the full parameter reference.

  • help: show detailed documentation for all verbs or a single named verb. No required parameters.

  • about: return build identity and host environment metadata for troubleshooting. No required parameters.

  • status: return server health: version, accounts, uptime, config (no Graph call). No required parameters.

  • list_docs: list embedded documentation: slug, title, summary, tags, size, and doc:// URI. No required parameters.

  • search_docs: search embedded docs by keyword; returns ranked snippets with line numbers. Requires: query.

  • get_docs: fetch a document or section by slug; use search_docs first to identify the slug. Requires: slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugNoDocument slug (e.g., 'troubleshooting', 'readme', 'quickstart'). Use list_docs to enumerate slugs.
queryNoCase-insensitive keyword or phrase to search across the embedded documentation bundle.
outputNoOutput mode: 'text' (default), 'summary', or 'raw'.
sectionNoOptional H2 heading anchor to extract a single section (e.g., 'token-refresh'). Anchors are lower-cased heading text with spaces replaced by hyphens, unless the heading carries an explicit '{#custom-id}' tag, in which case that id is the anchor (e.g., 'container-no-keychain').
operationYesThe operation to perform. Call with operation="help" for full documentation.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable behavioral context beyond the annotations: it notes that about works 'without requiring authentication', status performs 'no Graph call', and it clarifies dependencies like 'Requires: query' and 'Requires: slug'. These details disclose operational traits that are not present in the readOnlyHint or idempotentHint annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured: a brief overview sentence, a general instruction about the operation parameter, and a bullet-style list of verbs with their actions and required parameters. Every sentence serves a purpose, and the format is scannable and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has six sub-operations and no output schema, the description provides sufficient detail for selection and invocation. It describes the return value of each verb (e.g., about returns 'build identity and host environment metadata', status returns 'version, accounts, uptime, config', search_docs returns 'ranked snippets with line numbers') and notes that help gives the full parameter reference.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers all parameters with detailed descriptions (100% coverage), so the baseline is 3. The description adds semantic value by linking specific parameters to their verbs (e.g., 'search_docs requires query', 'get_docs requires slug') and instructing users to consult help for optional parameters. This mapping is not fully explicit in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly defines the tool as system diagnostics and authentication utilities, and enumerates six specific verbs with distinct actions (help, about, status, list_docs, search_docs, get_docs). Each verb has a one-line explanation, so the purpose is specific and unambiguous, and it is naturally distinguished from sibling tools like account, calendar, and mail.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance, such as 'Start with system.about when troubleshooting' and 'use search_docs first to identify the slug' for get_docs. It also tells users to call operation='help' for the full parameter reference. It does not explicitly contrast with sibling tools, but the system-level scope is implied, making the usage context clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv0.6.0
    • Changedmail1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"KQL search string (e.g. subject:\"Design Review\" from:alice@contoso.com)."New value: +"KQL search string. Write a multi-word property value in parentheses, e.g. subject:(Design Review) from:alice@contoso.com; an unparenthesised multi-word value binds only its first token."
    • Changedsystem1 field changed
      • changedInput schema / properties / section / description
        Previous value: -"Optional H2 heading anchor to extract a single section (e.g., 'token-refresh'). Anchors are lower-cased heading text with spaces replaced by hyphens."New value: +"Optional H2 heading anchor to extract a single section (e.g., 'token-refresh'). Anchors are lower-cased heading text with spaces replaced by hyphens, unless the heading carries an explicit '{#custom-id}' tag, in which case that id is the anchor (e.g., 'container-no-keychain')."
  2. 4 tool updatesv0.4.0
    • First observedaccount
    • First observedcalendar
    • First observedmail
    • First observedsystem

TDQS

A4.4/5.0
Disambiguation5/5

The four tools (account, calendar, mail, system) each cover a distinct domain with no overlap in their primary responsibilities. The sub-operations within each tool are also clearly separated, making it easy for an agent to select the right tool.

Naming Consistency5/5

All tool names are single lowercase nouns (account, calendar, mail, system), following a consistent and predictable pattern. The sub-operations use a verb_noun convention, but the tool-level naming is uniform.

Tool Count5/5

With only 4 tools, each serving a major functional area (account, calendar, mail, system), the count is well-scoped and appropriate. The sub-operation design keeps the top-level surface compact while still covering a broad domain.

Completeness3/5

The calendar and account tools provide comprehensive lifecycle coverage, but the mail tool in its current configuration only exposes read operations (list, get, search) and lacks essential write capabilities such as sending, replying, or managing drafts. This is a significant gap for a mail-oriented server.

Maintenance

ActivityMaintained
ResponsivenessSlow

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Multi-account Google MCP server providing read access to Gmail and Calendar via stdio. Supports secure authentication for personal and work accounts with OAuth and keychain token storage.
    4
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    A lightweight MCP server for personal Microsoft Outlook/Hotmail accounts, enabling email search, reading, attachment management, and folder operations via Microsoft Graph API with OAuth device-code flow.
    6
    1
    -
  • F
    license
    Not graded
    quality
    B
    maintenance
    Local MCP server for personal Outlook.com/Hotmail/Live accounts, enabling email triage, folder management, bulk operations, and newsletter unsubscribe via Microsoft Graph.
    -
  • A
    license
    A
    quality
    C
    maintenance
    A local stdio MCP server that enables reading, sending, and searching emails, as well as listing calendar events via Microsoft Graph API, using device-code authentication.
    10
    114
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/desek/outlook-local-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server