Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions community-plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -1425,5 +1425,28 @@
"setup_instructions_file_path": ""
},
"deleted": true
},
{
"id": "omi-ms365-integration",
"name": "Microsoft 365",
"author": "Patrick Güra",
"description": "Connect to Outlook, Teams, SharePoint and OneDrive. Draft emails, schedule meetings, summarize threads and upload files from your OMI conversations.",
"image": "/plugins/logos/ms365.png",
"capabilities": [
"external_integration"
],
"external_integration": {
"triggers_on": "memory_creation",
"webhook_url": "https://omi-ms365-plugin.onrender.com/webhook/memory",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Render free-tier cold-start latency

The backend is hosted on Render's free tier (omi-ms365-plugin.onrender.com), which spins down after ~15 minutes of inactivity and takes 50+ seconds to wake on the first request. Tool calls that arrive during a cold-start window will time out or return an error from OMI's side, and users will have no context for why the integration stopped responding. Consider either noting this in the README or upgrading to a paid plan before the plugin goes live to a wider audience.

"setup_completed_url": "https://omi-ms365-plugin.onrender.com/setup_check",
"setup_instructions_file_path": "/plugins/instructions/ms365/README.md",
"auth_steps": [
{
"name": "Sign in with Microsoft",
"url": "https://omi-ms365-plugin.onrender.com/setup/ms365"
}
]
},
"deleted": false
}
]
47 changes: 47 additions & 0 deletions plugins/instructions/ms365/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# OMI + Microsoft 365 Integration

Seamlessly connect your OMI wearable with Microsoft 365 — Outlook Mail,
Calendar, Teams, SharePoint and OneDrive — with a single sign-in.

## Features

- Draft, search and send Outlook mail
- List upcoming events, create meetings and find free slots in your calendar
- Send Teams chat messages and create Teams online meetings
- Browse recent files across OneDrive and SharePoint, upload text content,
read documents
- Secure OAuth 2.0 authentication via Microsoft Entra ID (multi-tenant —
works for any personal `@outlook.com` / `@hotmail.com` account and any
Microsoft 365 work or school account)
- Tokens are stored server-side; you can revoke access at any time

## Setup

1. Open **Apps** in OMI and find **Microsoft 365**.
2. Tap **Connect with Microsoft**.
3. Sign in with your Microsoft account and approve the requested
permissions.
4. You will be redirected back to OMI automatically. That's it.

## Permissions Requested

The plugin requests the minimum delegated Microsoft Graph scopes required
for the features above: `User.Read`, `MailboxSettings.Read`, `Mail.Read`,
`Mail.Send`, `Mail.ReadWrite`, `Calendars.ReadWrite`, `Chat.ReadWrite`,
`ChannelMessage.Send`, `OnlineMeetings.ReadWrite`, `Team.ReadBasic.All`,
`Files.ReadWrite.All`, `Sites.Read.All`, `People.Read`, `Contacts.Read`,
`offline_access`.
Comment on lines +28 to +33
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 "Minimum" scopes overstated for broad write permissions

Describing these as the minimum required scopes may give users false confidence. Files.ReadWrite.All grants write access to every file the signed-in user can reach — including files shared with them in SharePoint — not just files the plugin itself creates. Similarly, Mail.ReadWrite allows modifying (not just reading or sending) all mail, and Sites.Read.All exposes all SharePoint site content for work/school accounts. Consider using Files.ReadWrite (app-created files only) where feasible, and replace "minimum" with more neutral phrasing such as "required" so users can make a fully informed decision.

Suggested change
The plugin requests the minimum delegated Microsoft Graph scopes required
for the features above: `User.Read`, `MailboxSettings.Read`, `Mail.Read`,
`Mail.Send`, `Mail.ReadWrite`, `Calendars.ReadWrite`, `Chat.ReadWrite`,
`ChannelMessage.Send`, `OnlineMeetings.ReadWrite`, `Team.ReadBasic.All`,
`Files.ReadWrite.All`, `Sites.Read.All`, `People.Read`, `Contacts.Read`,
`offline_access`.
The plugin requests the following delegated Microsoft Graph scopes required


## Revoke Access

You can disconnect at any time from the OMI app. You may also revoke the
consent from the Microsoft side at
<https://myaccount.microsoft.com/> → **Privacy** → **Apps and services
you've authorized**.

## Source & Issues

- Source: https://github.com/snyfer/omi-ms365-plugin
- Backend: https://omi-ms365-plugin.onrender.com
- Manifest: https://omi-ms365-plugin.onrender.com/.well-known/omi-tools.json
- Questions / issues: please open an issue on the GitHub repo above.
Binary file added plugins/logos/ms365.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading