Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

outlook-mcpoutlook MCP 搜索

Agent Skill

outlook-mcp 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,663

周安装

307

GitHub Stars

1

下载量

2,481
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:outlook-mcp(outlook MCP 搜索)
来源仓库:https://github.com/mpalermiti/outlook-mcp
安装命令:
openclaw skills install outlook-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install outlook-mcp

简介

outlook-mcp 是为个人 Outlook 账户设计的生产级 MCP 服务器。

  • 提供涵盖邮件、日历、联系人等 54 种类型的数据操作工具。
  • 通过 clawhub 安装,需进行 OAuth 授权获取访问权限。
  • 建议使用持久化存储后端保障令牌安全与缓存可靠性。
  • 注意该服务仅支持 Outlook.com/Hotmail/Live 个人账户,不支持 Office 365 企业版。

SKILL.md

name
outlook-mcp
description
Production-grade MCP server for personal Outlook (Outlook.com / Hotmail / Live). 54 typed Graph tools across mail, calendar, contacts, to-do, drafts, attachments, folders, threading, batch ops. Granular permissions, OS-keyring auth, /$batch-optimized triage. Built for agents that need real Outlook coverage, not a CLI wrapper. BYO Azure app; zero telemetry.
homepage
https://github.com/mpalermiti/outlook-mcp
metadata
openclaw
emoji
\F4EC
requires
python
>=3.10
install
kind
shell
command
git clone https://github.com/mpalermiti/outlook-mcp.git && cd outlook-mcp && uv sync
bins
["outlook-mcp"]
label
Clone and install (uv)

outlook-mcp

MCP server for Microsoft Outlook personal accounts (Outlook.com, Hotmail, Live). Provides AI agents with full access to mail, calendar, contacts, and tasks via Microsoft Graph API.

Independent open-source project. Not affiliated with Microsoft.

Important

  • Personal Microsoft accounts only (@outlook.com, @hotmail.com, @live.com). Work/school accounts (Entra ID) are not supported in v1.
  • Requires Azure AD app registration — free, takes ~5 minutes, but you need a free Azure account first. See README.
  • Auth is CLI-based — run outlook-mcp auth on the host before the agent can use it. No interactive auth through MCP tools.

Setup

  1. Create a free Azure account at azure.microsoft.com/free (sign up with your @outlook.com address)
  2. Register an Azure AD app (see README for step-by-step)
  3. Configure: Create ~/.outlook-mcp/config.json:
   {
     "client_id": "YOUR-APP-CLIENT-ID",
     "tenant_id": "consumers",
     "timezone": "America/Los_Angeles",
     "read_only": true
   }
  1. Register with OpenClaw (writes to mcp.servers in ~/.openclaw/openclaw.json):
   openclaw mcp set outlook '{"command":"uv","args":["--directory","/path/to/outlook-mcp","run","outlook-mcp"]}'
   openclaw mcp list   # verify
  1. Authenticate on the host:
   cd /path/to/outlook-mcp && uv run outlook-mcp auth
  1. Restart the gateway: openclaw gateway restart

Tools (54)

Auth

  • outlook_auth_status — Check authentication status and read-only mode

Mail — Read

  • outlook_list_inbox — List messages with filters (folder, unread, sender, date)
  • outlook_read_message — Get full message by ID
  • outlook_search_mail — Search mail using KQL query
  • outlook_list_folders — List all mail folders

Mail — Write

  • outlook_send_message — Send email with recipients, CC, BCC, HTML, importance
  • outlook_reply — Reply or reply-all to a message
  • outlook_forward — Forward a message

Mail — Triage

  • outlook_move_message — Move to a folder
  • outlook_delete_message — Delete (soft by default, permanent optional)
  • outlook_flag_message — Set follow-up flag
  • outlook_categorize_message — Set categories
  • outlook_mark_read — Mark read or unread
  • outlook_reclassify_message — Move between Focused Inbox and Other

Calendar

  • outlook_list_events — List events in date range (expands recurring)
  • outlook_get_event — Get event details
  • outlook_create_event — Create event with attendees, recurrence, online meeting
  • outlook_update_event — Update event fields
  • outlook_delete_event — Delete event
  • outlook_rsvp — Accept, decline, or tentatively accept

Contacts

  • outlook_list_contacts — List with cursor pagination
  • outlook_search_contacts — Search by name or email
  • outlook_get_contact — Get full details
  • outlook_create_contact — Create
  • outlook_update_contact — Update
  • outlook_delete_contact — Delete

To Do

  • outlook_list_task_lists — List To Do lists
  • outlook_list_tasks — List tasks with status filter and pagination
  • outlook_create_task — Create with due date, importance, recurrence
  • outlook_update_task — Update
  • outlook_complete_task — Mark completed
  • outlook_delete_task — Delete

Drafts

  • outlook_list_drafts — List with pagination
  • outlook_create_draft — Create for later review
  • outlook_update_draft — Update
  • outlook_send_draft — Send
  • outlook_delete_draft — Delete

Attachments

  • outlook_list_attachments — List on a message
  • outlook_download_attachment — Download (base64 or save to file)
  • outlook_send_with_attachments — Send with files (auto upload session for >3MB)
  • outlook_attach_to_draft — Add attachments to an existing draft (auto upload session for >3MB)
  • outlook_remove_draft_attachment — Remove a single attachment from a draft

Folder Management

  • outlook_create_folder — Create (top-level or nested)
  • outlook_rename_folder — Rename
  • outlook_delete_folder — Delete (refuses well-known folders)

Threading and Batch

  • outlook_list_thread — Get all messages in a conversation
  • outlook_copy_message — Copy to another folder
  • outlook_batch_triage — Batch move/flag/categorize/mark_read (max 20)

User and Admin

  • outlook_whoami — Current user profile
  • outlook_list_calendars — Available calendars
  • outlook_list_categories — Category definitions with colors
  • outlook_get_mail_tips — Pre-send check (OOF, delivery restrictions)
  • outlook_list_accounts — Configured accounts
  • outlook_switch_account — Switch active account

Privacy

  • Zero telemetry, zero local caching
  • Only connects to login.microsoftonline.com and graph.microsoft.com
  • Tokens stored in OS keyring (macOS Keychain, Windows Credential Store)
  • BYOID: you register your own Azure AD app — no shared client ID

Notes

  • IDs are opaque Graph strings — get them from list/search tools, never guess
  • Dates are ISO 8601, UTC in responses, config timezone for input interpretation
  • Mail search uses KQL syntax
  • Start with read_only: true, flip when comfortable
  • Granular permissions: For finer control, set allow_categories in config (e.g., ["calendar_write"] to allow only calendar writes). See README for the 7 categories and example policies.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.13%
按下载量换算1,839

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills