Outlook Email

v0.1.1

Microsoft Outlook 邮件集成。收发邮件、搜索邮件、管理邮件文件夹。通过 MorphixAI 代理安全访问 Microsoft Graph API。

0· 467·2 current·2 all-time
byPaul Leo@paul-leo

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for paul-leo/outlook-email-2.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Outlook Email" (paul-leo/outlook-email-2) from ClawHub.
Skill page: https://clawhub.ai/paul-leo/outlook-email-2
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: MORPHIXAI_API_KEY
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install outlook-email-2

ClawHub CLI

Package manager switcher

npx clawhub@latest install outlook-email-2
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, the single required env var (MORPHIXAI_API_KEY), and instructions to use the mx_outlook tool and morphix.app links are coherent for an Outlook Microsoft Graph proxy integration.
Instruction Scope
SKILL.md only instructs using mx_outlook actions (list, get, search, send, reply, list_folders) and linking an Outlook account via MorphixAI. It does not instruct reading local files, other env vars, or sending data to third-party endpoints beyond MorphixAI/Microsoft Graph.
Install Mechanism
Instruction-only skill with no install spec or downloaded artifacts. It asks the user to install the openclaw-morphixai plugin separately, which is expected and keeps this skill's footprint minimal.
Credentials
Only MORPHIXAI_API_KEY is required, which is proportionate to using a MorphixAI proxy. Note: that API key likely grants access to your Outlook data via MorphixAI, so it is powerful and requires trusting the MorphixAI service and the openclaw-morphixai plugin.
Persistence & Privilege
always is false and no special persistence or system-wide configuration changes are requested. Autonomous invocation is allowed (disable-model-invocation is false), which is the platform default.
Assessment
This skill appears to do what it says: it uses a single MorphixAI API key to operate your Outlook mailbox through the mx_outlook tool. Before installing, verify the provenance of the openclaw-morphixai plugin (source, registry, or code) and review what scopes/permissions you grant when linking your Outlook account on morphix.app. Treat the MORPHIXAI_API_KEY as highly sensitive (it can enable access to your email) and avoid sharing it with untrusted parties. If you prefer tighter control, only enable the skill when needed or disable autonomous invocation so actions require explicit confirmation.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📧 Clawdis
EnvMORPHIXAI_API_KEY
latestvk97bmw8hnk6vczwpwpz4jqhveh82dnw9
467downloads
0stars
2versions
Updated 1mo ago
v0.1.1
MIT-0

Outlook 邮件

通过 mx_outlook 工具管理 Microsoft Outlook 邮箱:读取、搜索、发送和回复邮件。

前置条件

  1. 安装插件: openclaw plugins install openclaw-morphixai
  2. 获取 API Key: 访问 morphix.app/api-keys 生成 mk_xxxxxx 密钥
  3. 配置环境变量: export MORPHIXAI_API_KEY="mk_your_key_here"
  4. 链接账号: 访问 morphix.app/connections 链接 Outlook 账号,或通过 mx_link 工具链接(app: microsoft_outlook

核心操作

查看当前用户

mx_outlook:
  action: get_me

列出邮件

mx_outlook:
  action: list_messages
  top: 10

指定文件夹:

mx_outlook:
  action: list_messages
  folder_id: "sentitems"
  top: 5

查看邮件详情

mx_outlook:
  action: get_message
  message_id: "AAMkADxx..."

搜索邮件

mx_outlook:
  action: search_messages
  query: "发票"
  top: 5

发送邮件

mx_outlook:
  action: send_mail
  subject: "项目周报"
  body: "本周完成了以下工作:\n1. 完成用户模块\n2. 修复了 3 个 bug"
  to: ["colleague@company.com"]
  cc: ["manager@company.com"]

发送 HTML 邮件:

mx_outlook:
  action: send_mail
  subject: "项目进度更新"
  body: "<h2>项目进度</h2><p>本周进展顺利</p>"
  body_type: "HTML"
  to: ["team@company.com"]

回复邮件

mx_outlook:
  action: reply_to_message
  message_id: "AAMkADxx..."
  comment: "收到,我会尽快处理。"

列出邮件文件夹

mx_outlook:
  action: list_folders

常见工作流

查看未读邮件并回复

1. mx_outlook: list_messages, top: 10
     → 检查未读邮件(isRead: false)
2. mx_outlook: get_message, message_id: "xxx"
     → 查看具体内容
3. mx_outlook: reply_to_message, message_id: "xxx", comment: "回复内容"

搜索特定邮件

1. mx_outlook: search_messages, query: "from:boss@company.com 本周"

注意事项

  • folder_id 支持内置名称:inboxdraftssentitemsdeleteditemsarchive
  • 搜索使用 Microsoft Graph $search 语法
  • body_type 默认为 "Text",如需 HTML 格式需显式指定 "HTML"
  • account_id 参数通常省略,工具自动检测已链接的 Outlook 账号

Comments

Loading comments...