← 返回
未分类 中文

Outlook Inbox

Search Outlook mail, read threads, manage drafts, send or reply to email, and manage calendar events via Microsoft Graph. Use this skill when users want to m...
通过 Microsoft Graph 搜索 Outlook 邮件、读取邮件会话、管理草稿、发送或回复邮件以及管理日历事件,在用户需要…时使用此技能。
hith3sh hith3sh 来源
未分类 clawhub v1.0.5 2 版本 99731.9 Key: 无需
★ 6
Stars
📥 1,368
下载
💾 1
安装
2
版本
#latest

概述

Outlook Inbox

!Outlook Inbox

Access Outlook mail, calendar, contacts, and tasks via Microsoft Graph API with managed OAuth authentication. Search mail, read threads, manage drafts, send or reply to email, and coordinate calendar events.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Outlook API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Outlook
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Outlook

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│ Microsoft Graph │
│   (User Chat)   │     │   (OAuth)    │     │  (Mail API) │
└─────────────────┘     └──────────────┘     └──────────────────┘
          │                       │                       │
          │  1. Install Plugin   │                       │
          │  2. Pair Device      │                       │
          │  3. Connect Outlook  │                       │
          │                      │  4. Secure Token      │
          │                      │  5. Proxy Requests    │
          │                      │                       │
          ▼                      ▼                       ▼
    ┌──────────┐           ┌──────────┐           ┌──────────┐
    │  SKILL   │           │ Dashboard│           │ Outlook  │
    │  File    │           │ Auth     │           │ Mailbox  │
    └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Outlook again."

Quick Start

# List messages in inbox
clawlink_call_tool --tool "outlook_list_messages" --params '{"folder_id": "inbox", "top": 25}'

# Search messages
clawlink_call_tool --tool "outlook_search_messages" --params '{"query": "quarterly report"}'

# Get message details
clawlink_call_tool --tool "outlook_get_message" --params '{"message_id": "MESSAGE_ID"}'

Authentication

All Outlook tool calls are authenticated automatically by ClawLink using the user's connected Microsoft account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Microsoft Graph request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=outlook and connect Outlook.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for outlook in the list.

Verify Connection

clawlink_list_tools --integration outlook

Response: Returns the live tool catalog for Outlook.

Reconnect

If Outlook tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=outlook
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration outlook

Security & Permissions

  • Access is scoped to mail, calendar, contacts, and tasks within the connected Microsoft account.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (delete message, cancel event) must be confirmed.
  • Sending email, sending replies, or deleting calendar events are high-impact actions that require explicit user confirmation.

Tool Reference

Mail Operations

ToolDescriptionMode
-------------------------
outlook_list_messagesList messages in a folderRead
outlook_get_messageGet a message by IDRead
outlook_search_messagesSearch messages by queryRead
outlook_create_draftCreate a new email draftWrite
outlook_create_draft_replyCreate a draft reply to a messageWrite
outlook_create_forward_draftCreate a draft forwardWrite
outlook_send_messageSend a messageWrite
outlook_send_replySend a reply to a messageWrite
outlook_move_messageMove a message to a folderWrite
outlook_batch_move_messagesMove up to 20 messages at onceWrite
outlook_copy_messageCopy a message to another folderWrite
outlook_delete_messageDelete a messageWrite
outlook_batch_update_messagesBatch update up to 20 messagesWrite

Mail Folder Operations

ToolDescriptionMode
-------------------------
outlook_list_mail_foldersList all mail foldersRead
outlook_create_mail_folderCreate a new mail folderWrite
outlook_copy_mail_folderCopy a mail folderWrite
outlook_delete_mail_folderDelete a mail folderWrite

Calendar Events

ToolDescriptionMode
-------------------------
outlook_list_eventsList calendar eventsRead
outlook_get_eventGet an event by IDRead
outlook_calendar_create_eventCreate a new calendar eventWrite
outlook_create_me_eventCreate an event in the user's calendarWrite
outlook_update_eventUpdate an existing eventWrite
outlook_delete_calendar_eventDelete a calendar eventWrite
outlook_accept_eventAccept a meeting invitationWrite
outlook_decline_eventDecline a meeting invitationWrite
outlook_cancel_eventCancel a meeting and notify attendeesWrite

Contacts

ToolDescriptionMode
-------------------------
outlook_list_contactsList contactsRead
outlook_get_contactGet a contact by IDRead
outlook_create_contactCreate a new contactWrite
outlook_update_contactUpdate an existing contactWrite
outlook_delete_contactDelete a contactWrite
outlook_list_contact_foldersList contact foldersRead

Attachments

ToolDescriptionMode
-------------------------
outlook_add_mail_attachmentAdd an attachment to a messageWrite
outlook_create_attachment_upload_sessionCreate an upload session for large attachments (>3 MB)Write
outlook_list_attachmentsList attachments on a messageRead

Rules & Categories

ToolDescriptionMode
-------------------------
outlook_create_email_ruleCreate an email ruleWrite
outlook_list_email_rulesList email rulesRead
outlook_create_master_categoryCreate a categoryWrite
outlook_list_master_categoriesList categoriesRead

Code Examples

List messages in inbox

clawlink_call_tool --tool "outlook_list_messages" \
  --params '{
    "folder_id": "inbox",
    "top": 25,
    "filter": "isRead eq false",
    "orderby": "sentDateTime desc"
  }'

Send a message

clawlink_call_tool --tool "outlook_send_message" \
  --params '{
    "subject": "Quarterly Report",
    "body": {
      "contentType": "text",
      "content": "Please find the quarterly report attached."
    },
    "toRecipients": [
      {
        "emailAddress": {
          "address": "colleague@example.com"
        }
      }
    ]
  }'

Create a calendar event

clawlink_call_tool --tool "outlook_create_me_event" \
  --params '{
    "subject": "Team Meeting",
    "start_datetime": "2024-07-15T10:00:00Z",
    "end_datetime": "2024-07-15T11:00:00Z",
    "body": {
      "contentType": "text",
      "content": "Weekly sync with the team."
    },
    "location": {
      "displayName": "Conference Room A"
    },
    "attendees": [
      {
        "emailAddress": {
          "address": "teammate@example.com"
        },
        "type": "required"
      }
    ]
  }'

Search messages

clawlink_call_tool --tool "outlook_search_messages" \
  --params '{
    "query": "from:manager@example.com subject:review",
    "folder_id": "inbox"
  }'

Create a draft reply

clawlink_call_tool --tool "outlook_create_draft_reply" \
  --params '{
    "message_id": "MESSAGE_ID",
    "comment": "Thanks for the update! I will review and get back to you shortly."
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Outlook is connected.
  2. Call clawlink_list_tools --integration outlook to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration outlook.
  5. If no Outlook tools appear, direct the user to https://claw-link.dev/dashboard?add=outlook.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: Search messages → Read thread → Show results     │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                     │
│  list → get → describe → preview → confirm → call           │
│                                                             │
│  Example: Describe tool → Preview changes → User approves   │
│           → Execute update                                  │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Message IDs are immutable identifiers — use them directly from list or search results.
  • Large attachments (>3 MB) require an upload session — use create_attachment_upload_session first.
  • Batch operations are limited to 20 items per call.
  • start_datetime must chronologically precede end_datetime on calendar events.
  • Sending a message moves it from Drafts — no separate send action needed for drafts.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration outlook.
Missing connectionOutlook is not connected. Direct the user to https://claw-link.dev/dashboard?add=outlook.
ItemNotFoundMessage or folder does not exist. Check the ID.
InvalidArgumentInvalid parameter or missing required field. Review the tool schema with clawlink_describe_tool.
SendAsDeniedThe authenticated user does not have permission to send as the specified account.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly outlook.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.5 当前
    2026-06-09 16:22 安全 安全
  • v0.1.0
    2026-05-21 14:56 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

office-efficiency

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 379 📥 143,672
office-efficiency

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 455 📥 151,085
office-efficiency

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 924 📥 186,473