outlook-local-mcp
The Outlook Local MCP server integrates Microsoft Outlook with AI assistants via the Microsoft Graph API, providing calendar, mail, account, and system management through a consistent tool interface.
Calendar: List calendars; list, search, get, create, update, delete, and reschedule events and meetings; respond to invitations (accept, tentatively accept, decline); cancel meetings; check free/busy availability. Supports recurrence, timezones, and Teams online meetings.
Mail: List folders and messages; filter by sender, date, folder, importance, read status, attachments, flags; get message details; KQL search. (With explicit configuration
MailEnabledandMailManageEnabled) manage drafts: create, reply, forward, update, delete; and access conversations and attachments.Account: Add, remove, list, login, logout, and refresh Microsoft accounts using various OAuth methods (browser, device code, auth code).
System: Get server status, version, uptime, host environment, and access embedded documentation (list, search, fetch).
General: All actions use an
operationparameter per tool;operation=helpreturns detailed documentation.
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@latestDocker / 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:latestSee 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 |
Project overview and feature list | |
Prerequisites, installation, and first tool call | |
Output tiers, multi-account model, mail gating, OAuth scopes, observability, and more | |
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 toolsaccountADestructive
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.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Unique label for the account (1-64 chars, alphanumeric/underscore/hyphen). | |
| output | No | Output mode: 'text' (default), 'summary', or 'raw'. | |
| client_id | No | OAuth client ID. Defaults to the server's configured client ID. | |
| operation | Yes | The operation to perform. Call with operation="help" for full documentation. | |
| tenant_id | No | Entra ID tenant ID. Defaults to the server's configured tenant ID. | |
| auth_method | No | Authentication method: 'browser', 'device_code', or 'auth_code'. Defaults to the server's configured method. |
TDQS
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.
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.
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.
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.
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.
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.
calendarADestructive
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.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Event body content (HTML or plain text). | |
| date | No | Date 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. | |
| query | No | Text to search for in event subjects (case-insensitive). | |
| output | No | Output mode: 'text' (default), 'summary', or 'raw'. | |
| account | No | Account 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. | |
| comment | No | Optional message to the organizer explaining your response. | |
| show_as | No | Filter by free/busy status: free, tentative, busy, oof, or workingElsewhere. | |
| subject | No | Event title. | |
| event_id | No | The unique identifier of the event to retrieve. | |
| location | No | Location display name (e.g. room name, office, or "Microsoft Teams"). | |
| response | No | Response type: 'accept', 'tentative', or 'decline'. | |
| timezone | No | IANA timezone name for returned event times (e.g., America/New_York). | |
| attendees | No | JSON array of attendees: [{"email":"a@b.com","name":"Name","type":"required|optional|resource"}]. | |
| operation | Yes | The operation to perform. Call with operation="help" for full documentation. | |
| categories | No | Comma-separated category names to filter by (matches any, client-side). | |
| importance | No | Filter by importance: low, normal, or high. | |
| is_all_day | No | Filter by all-day event status. | |
| recurrence | No | JSON recurrence object, e.g. {"pattern":{"type":"weekly","interval":1,"daysOfWeek":["monday"]},"range":{"type":"endDate","startDate":"2026-04-15","endDate":"2026-12-31"}}. | |
| calendar_id | No | Optional calendar ID. If omitted, uses the default calendar. | |
| max_results | No | Maximum number of events to return (default 25, max 100). | |
| sensitivity | No | Filter by sensitivity: normal, personal, private, or confidential. | |
| end_datetime | No | End of the time range in ISO 8601 format (e.g., 2026-03-13T00:00:00Z). Required unless 'date' is provided. | |
| end_timezone | No | IANA timezone for end time. Defaults to server's configured timezone when omitted. | |
| is_cancelled | No | Filter by cancellation status. | |
| send_response | No | Whether to send the response to the organizer. Defaults to true. | |
| created_by_mcp | No | When true, only return events created by this MCP server (server-side filter). | |
| is_reminder_on | No | Enable or disable the reminder. | |
| start_datetime | No | Start of the time range in ISO 8601 format (e.g., 2026-03-12T00:00:00Z). Required unless 'date' is provided. | |
| start_timezone | No | IANA timezone for start time, e.g. America/New_York. Defaults to server's configured timezone when omitted. | |
| reminder_minutes | No | Reminder minutes before start. | |
| is_online_meeting | No | Set true to create a Teams online meeting (work/school accounts only). | |
| new_start_datetime | No | New start time in ISO 8601 without offset, e.g. 2026-04-17T14:00:00. | |
| new_start_timezone | No | IANA timezone for the new start time. Defaults to the server's configured timezone. |
TDQS
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.
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.
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.
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.
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.
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.
mailARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| from | No | Sender email address to filter by (e.g. alice@contoso.com). | |
| query | No | 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. | |
| output | No | Output mode: 'text' (default), 'summary', or 'raw'. | |
| account | No | Account label or UPN to use. Omit to auto-select the default account. | |
| is_read | No | Filter by read/unread state. Omit to include both. | |
| is_draft | No | Filter by draft state. Omit to include both. | |
| timezone | No | IANA timezone name for the Prefer: outlook.timezone header. | |
| folder_id | No | Mail folder ID to list messages from. Omit to list from all folders. | |
| operation | Yes | The operation to perform. Call with operation="help" for full documentation. | |
| importance | No | Filter by message importance. | |
| message_id | No | The unique identifier of the message to retrieve. | |
| provenance | No | Filter to messages created by this MCP server (requires provenance tagging). | |
| flag_status | No | Filter by follow-up flag status. | |
| max_results | No | Maximum number of folders to return (default 25). | |
| end_datetime | No | End of date range (ISO 8601). Filters by receivedDateTime <=. | |
| start_datetime | No | Start of date range (ISO 8601, e.g. 2026-03-12T00:00:00Z). Filters by receivedDateTime >=. | |
| conversation_id | No | Conversation ID to retrieve all messages in a thread. | |
| has_attachments | No | Filter by attachment presence. Omit to include both. |
TDQS
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.
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.
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.
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.
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.
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.
systemARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | Document slug (e.g., 'troubleshooting', 'readme', 'quickstart'). Use list_docs to enumerate slugs. | |
| query | No | Case-insensitive keyword or phrase to search across the embedded documentation bundle. | |
| output | No | Output mode: 'text' (default), 'summary', or 'raw'. | |
| section | No | 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'). | |
| operation | Yes | The operation to perform. Call with operation="help" for full documentation. |
TDQS
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.
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.
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.
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.
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.
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.
2 tool updates
v0.6.0- Changed
mail1 field changed- changed
Input schema / properties / query / descriptionPrevious 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."
- Changed
system1 field changed- changed
Input schema / properties / section / descriptionPrevious 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')."
4 tool updates
v0.4.0- First observed
account - First observed
calendar - First observed
mail - First observed
system
TDQS
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.
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.
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.
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
Related MCP Connectors
Local-first task manager: create, edit, and complete tasks, projects, and checklists via MCP.
Hosted MCP server with managed OAuth for 15+ toolkits: Google Workspace, Fitbit, Oura, Kalshi, etc.
Self-hosted federated MCP gateway: one OAuth 2.1 MCP server in front of N apps, user-level scopes.
Go MCP server for GitLab: 2 dynamic tools reach 1000+ REST/GraphQL actions. Free/CE, no paid tier.
Related MCP Servers
- AlicenseBqualityCmaintenanceMulti-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.4MIT
- FlicenseAqualityDmaintenanceA 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.61-
- FlicenseNot gradedqualityBmaintenanceLocal MCP server for personal Outlook.com/Hotmail/Live accounts, enabling email triage, folder management, bulk operations, and newsletter unsubscribe via Microsoft Graph.-
- AlicenseAqualityCmaintenanceA 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.10114MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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