diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 655a6b133..e0839548e 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -333,6 +333,11 @@ "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": "x-ads", "source": "third_party/x-ads", diff --git a/README.md b/README.md index d2b9333ca..c239f8564 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `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. | | `gamma` | [Gamma](third_party/gamma/) | Cursor | Integrations | Generate presentations, documents, and webpages. | +| `teams` | [Teams](third_party/teams/) | Cursor | Productivity | Search, read, and send Microsoft Teams chats and channel messages. | 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/teams/.cursor-plugin/plugin.json b/third_party/teams/.cursor-plugin/plugin.json new file mode 100644 index 000000000..cb78a4ca5 --- /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 000000000..d0b979189 --- /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 000000000..ca2bba771 --- /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 000000000..015b5db69 --- /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 000000000..b9e62e31e --- /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 000000000..8c3264da5 --- /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" + } + } +}