Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
33 changes: 33 additions & 0 deletions third_party/teams/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
8 changes: 8 additions & 0 deletions third_party/teams/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
21 changes: 21 additions & 0 deletions third_party/teams/LICENSE
Original file line number Diff line number Diff line change
@@ -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.
40 changes: 40 additions & 0 deletions third_party/teams/README.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions third_party/teams/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions third_party/teams/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"teams": {
"type": "http",
"url": "https://api.cursor.com/rest-mcp/teams/mcp"
}
}
}
Loading