From 3f44ff568693588e1f315ac3e397f6d4e2e68474 Mon Sep 17 00:00:00 2001 From: Jason Ma Date: Wed, 9 Sep 2026 18:11:22 -0400 Subject: [PATCH] Add Teams and SharePoint third-party MCP plugins. Register the Microsoft Teams and SharePoint REST-MCP endpoints the same way Outlook is wired, so they can be installed from the marketplace. Co-authored-by: Cursor --- .cursor-plugin/marketplace.json | 10 +++++ README.md | 2 + .../sharepoint/.cursor-plugin/plugin.json | 33 +++++++++++++++ third_party/sharepoint/CHANGELOG.md | 8 ++++ third_party/sharepoint/LICENSE | 21 ++++++++++ third_party/sharepoint/README.md | 40 +++++++++++++++++++ third_party/sharepoint/assets/logo.svg | 1 + third_party/sharepoint/mcp.json | 8 ++++ third_party/teams/.cursor-plugin/plugin.json | 33 +++++++++++++++ third_party/teams/CHANGELOG.md | 8 ++++ third_party/teams/LICENSE | 21 ++++++++++ third_party/teams/README.md | 40 +++++++++++++++++++ third_party/teams/assets/logo.svg | 1 + third_party/teams/mcp.json | 8 ++++ 14 files changed, 234 insertions(+) create mode 100644 third_party/sharepoint/.cursor-plugin/plugin.json create mode 100644 third_party/sharepoint/CHANGELOG.md create mode 100644 third_party/sharepoint/LICENSE create mode 100644 third_party/sharepoint/README.md create mode 100644 third_party/sharepoint/assets/logo.svg create mode 100644 third_party/sharepoint/mcp.json create mode 100644 third_party/teams/.cursor-plugin/plugin.json create mode 100644 third_party/teams/CHANGELOG.md create mode 100644 third_party/teams/LICENSE create mode 100644 third_party/teams/README.md create mode 100644 third_party/teams/assets/logo.svg create mode 100644 third_party/teams/mcp.json diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 9cb30e8..54b616a 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -333,6 +333,16 @@ "source": "third_party/onedrive", "description": "Browse, search, and read Microsoft OneDrive files." }, + { + "name": "teams", + "source": "third_party/teams", + "description": "Search, read, and send Microsoft Teams chats and channel messages." + }, + { + "name": "sharepoint", + "source": "third_party/sharepoint", + "description": "Search SharePoint sites, browse document libraries, and read lists." + }, { "name": "x-ads", "source": "third_party/x-ads", diff --git a/README.md b/README.md index 32103e1..987fb92 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,8 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `x-ads` | [X Ads](third_party/x-ads/) | Cursor | Integrations | Manage ad campaigns, create ads, track conversions, and pull performance stats. | | `attio` | [Attio](third_party/attio/) | Cursor | Integrations | Search and update CRM records, lists, notes, and tasks. | | `hunter` | [Hunter](third_party/hunter/) | Cursor | Integrations | Find and verify emails, discover companies, and save leads. | +| `teams` | [Teams](third_party/teams/) | Cursor | Productivity | Search, read, and send Microsoft Teams chats and channel messages. | +| `sharepoint` | [SharePoint](third_party/sharepoint/) | Cursor | Productivity | Search SharePoint sites, browse document libraries, and read lists. | Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest). ## Repository structure diff --git a/third_party/sharepoint/.cursor-plugin/plugin.json b/third_party/sharepoint/.cursor-plugin/plugin.json new file mode 100644 index 0000000..b5effe7 --- /dev/null +++ b/third_party/sharepoint/.cursor-plugin/plugin.json @@ -0,0 +1,33 @@ +{ + "name": "sharepoint", + "displayName": "SharePoint", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.19.0", + "sand": "0.30.0" + }, + "description": "Search SharePoint sites, browse document libraries, and read lists.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://github.com/cursor/plugins/tree/main/third_party/sharepoint", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "sharepoint", + "sites", + "microsoft", + "mcp", + "documents" + ], + "category": "productivity", + "tags": [ + "sharepoint", + "documents", + "mcp", + "microsoft-365" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/sharepoint/CHANGELOG.md b/third_party/sharepoint/CHANGELOG.md new file mode 100644 index 0000000..368c90f --- /dev/null +++ b/third_party/sharepoint/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Logo: official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, on a padded white tile. +- Added the `sharepoint` MCP server pointing at `https://api.cursor.com/rest-mcp/sharepoint/mcp`. diff --git a/third_party/sharepoint/LICENSE b/third_party/sharepoint/LICENSE new file mode 100644 index 0000000..ca2bba7 --- /dev/null +++ b/third_party/sharepoint/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Cursor + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/third_party/sharepoint/README.md b/third_party/sharepoint/README.md new file mode 100644 index 0000000..985f895 --- /dev/null +++ b/third_party/sharepoint/README.md @@ -0,0 +1,40 @@ +# SharePoint + +Cursor plugin that connects agents to [Microsoft SharePoint](https://www.microsoft.com/microsoft-365/sharepoint) through Cursor's remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Search sites, browse document libraries, and read list items in the signed-in Microsoft account. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **SharePoint**. +3. Click **Install**, then complete the Microsoft sign-in prompt. + +Or run `/add-plugin sharepoint` in chat. + +## MCP + +```json +{ + "mcpServers": { + "sharepoint": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/sharepoint/mcp" + } + } +} +``` + +Auth is OAuth 2.0 against Microsoft (Entra ID). Cursor prompts for Microsoft sign-in when the plugin connects. + +## Docs + +- SharePoint API (Microsoft Graph): https://learn.microsoft.com/en-us/graph/api/resources/sharepoint +- Microsoft Graph overview: https://learn.microsoft.com/en-us/graph/overview + +Logo is the official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, placed on a white tile with padding so it reads well in the Cursor UI: +https://res-1.cdn.office.net/files/fabric-cdn-prod_20240411.001/assets/brand-icons/product/svg/sharepoint_48x1.svg + +## License + +MIT diff --git a/third_party/sharepoint/assets/logo.svg b/third_party/sharepoint/assets/logo.svg new file mode 100644 index 0000000..6700dbf --- /dev/null +++ b/third_party/sharepoint/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/third_party/sharepoint/mcp.json b/third_party/sharepoint/mcp.json new file mode 100644 index 0000000..5e3b1a4 --- /dev/null +++ b/third_party/sharepoint/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "sharepoint": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/sharepoint/mcp" + } + } +} diff --git a/third_party/teams/.cursor-plugin/plugin.json b/third_party/teams/.cursor-plugin/plugin.json new file mode 100644 index 0000000..cb78a4c --- /dev/null +++ b/third_party/teams/.cursor-plugin/plugin.json @@ -0,0 +1,33 @@ +{ + "name": "teams", + "displayName": "Teams", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.19.0", + "sand": "0.30.0" + }, + "description": "Search, read, and send Microsoft Teams chats and channel messages.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://github.com/cursor/plugins/tree/main/third_party/teams", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "teams", + "chat", + "microsoft", + "mcp", + "channels" + ], + "category": "productivity", + "tags": [ + "teams", + "chat", + "mcp", + "microsoft-365" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/teams/CHANGELOG.md b/third_party/teams/CHANGELOG.md new file mode 100644 index 0000000..d0b9791 --- /dev/null +++ b/third_party/teams/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Logo: official Microsoft Teams product icon from Microsoft's Fluent brand icon CDN, on a padded white tile. +- Added the `teams` MCP server pointing at `https://api.cursor.com/rest-mcp/teams/mcp`. diff --git a/third_party/teams/LICENSE b/third_party/teams/LICENSE new file mode 100644 index 0000000..ca2bba7 --- /dev/null +++ b/third_party/teams/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Cursor + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/third_party/teams/README.md b/third_party/teams/README.md new file mode 100644 index 0000000..015b5db --- /dev/null +++ b/third_party/teams/README.md @@ -0,0 +1,40 @@ +# Teams + +Cursor plugin that connects agents to [Microsoft Teams](https://www.microsoft.com/microsoft-teams) through Cursor's remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Search chats and channel messages, read conversations, send messages, and react in the signed-in Microsoft account. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Teams**. +3. Click **Install**, then complete the Microsoft sign-in prompt. + +Or run `/add-plugin teams` in chat. + +## MCP + +```json +{ + "mcpServers": { + "teams": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/teams/mcp" + } + } +} +``` + +Auth is OAuth 2.0 against Microsoft (Entra ID). Cursor prompts for Microsoft sign-in when the plugin connects. A work or school account is required. Reading channel messages needs tenant admin consent before the plugin can connect. + +## Docs + +- Teams API (Microsoft Graph): https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview +- Microsoft Graph overview: https://learn.microsoft.com/en-us/graph/overview + +Logo is the official Microsoft Teams product icon from Microsoft's Fluent brand icon CDN, placed on a white tile with padding so it reads well in the Cursor UI: +https://res-1.cdn.office.net/files/fabric-cdn-prod_20240411.001/assets/brand-icons/product/svg/teams_48x1.svg + +## License + +MIT diff --git a/third_party/teams/assets/logo.svg b/third_party/teams/assets/logo.svg new file mode 100644 index 0000000..b9e62e3 --- /dev/null +++ b/third_party/teams/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/third_party/teams/mcp.json b/third_party/teams/mcp.json new file mode 100644 index 0000000..8c3264d --- /dev/null +++ b/third_party/teams/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "teams": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/teams/mcp" + } + } +}