outlook-email

outlook-email is a skill for Claude Code, Codex from Morphicai/openclaw-morphixai. It costs 35 tokens per session (836 once invoked), scanned A, original, MIT.

An Outlook Mail integration for Microsoft’s email service. It uses a proxy to access Microsoft Graph, the API that lets software work with Microsoft accounts and their data.

In plain words
What is it for?
Listing and reading messages, searching mail, viewing folders, sending plain-text or HTML email, replying to messages, and listing mail folders.
Why use it?
It lets an agent find and handle email without requiring separate manual requests to the Outlook API.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Listing and reading messages, searching mail, viewing folders, sending plain-text or HTML email, replying to messages, and listing mail folders.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/morphicai/openclaw-morphixai/outlook-email
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Morphicai/openclaw-morphixai --skill outlook-email
Clone the repo
git clone --depth 1 https://github.com/Morphicai/openclaw-morphixai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for outlook-email

README.md
[![agentmods](https://agentmods.dev/badge/skills/morphicai/openclaw-morphixai/outlook-email.svg)](https://agentmods.dev/skills/morphicai/openclaw-morphixai/outlook-email)
Your own site
<a href="https://agentmods.dev/skills/morphicai/openclaw-morphixai/outlook-email"><img src="https://agentmods.dev/badge/skills/morphicai/openclaw-morphixai/outlook-email.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00836
Opus 5 $0.00017 $0.00418
Sonnet 5 $0.00007 $0.00167
Haiku 4.5 $0.00003 $0.00084

Measured 6d ago against content hash fbff9f6181d9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

outlook-email scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/openclaw-plugin/skills/outlook-email/SKILL.md · 129 lines

What it actually says

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: ["[email protected]"]
  cc: ["[email protected]"]

发送 HTML 邮件:

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

回复邮件

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:[email protected] 本周"

注意事项

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

文档与源码:GitHub

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 129 lines · 35 tokens per session scan A fbff9f6181d9

Subscribe to this mod's changes

outlook-email is a skill published in the GitHub repository Morphicai/openclaw-morphixai (0 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 836 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.