diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 7eb2de2f..2642173c 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -93,6 +93,11 @@ "source": "third_party/google-calendar", "description": "Search events and schedule meetings." }, + { + "name": "google-chat", + "source": "third_party/google-chat", + "description": "Search spaces and messages, read threads, and send messages." + }, { "name": "gong", "source": "third_party/gong", diff --git a/README.md b/README.md index 5408d433..19a17fe1 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `gmail` | [Gmail](third_party/gmail/) | Cursor | Productivity | Search, read, draft, and manage email. | | `google-drive` | [Google Drive](third_party/google-drive/) | Cursor | Productivity | Search, read, create, and share files. | | `google-calendar` | [Google Calendar](third_party/google-calendar/) | Cursor | Productivity | Search events and schedule meetings. | +| `google-chat` | [Google Chat](third_party/google-chat/) | Cursor | Productivity | Search spaces and messages, read threads, and send messages. | | `gong` | [Gong](third_party/gong/) | Cursor | Integrations | Pull account summaries, deal insights, and call briefs. | | `salesforce` | [Salesforce](third_party/salesforce/) | Cursor | Integrations | Query, create, and update records in your org. | | `playwright` | [Playwright](third_party/playwright/) | Cursor | Integrations | Navigate, click, screenshot, and test in a real browser. | diff --git a/third_party/google-chat/.cursor-plugin/plugin.json b/third_party/google-chat/.cursor-plugin/plugin.json new file mode 100644 index 00000000..1b059db5 --- /dev/null +++ b/third_party/google-chat/.cursor-plugin/plugin.json @@ -0,0 +1,34 @@ +{ + "name": "google-chat", + "displayName": "Google Chat", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Search spaces and messages, read threads, and send messages.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://github.com/cursor/plugins/tree/main/third_party/google-chat", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "google-chat", + "chat", + "messaging", + "google", + "mcp", + "workspace" + ], + "category": "productivity", + "tags": [ + "google-chat", + "chat", + "messaging", + "mcp", + "google-workspace" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/google-chat/CHANGELOG.md b/third_party/google-chat/CHANGELOG.md new file mode 100644 index 00000000..8cdb0690 --- /dev/null +++ b/third_party/google-chat/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Logo: official Google Chat product icon, on a padded white tile. +- Added the `google-chat` MCP server pointing at `https://chatmcp.googleapis.com/mcp/v1`. diff --git a/third_party/google-chat/LICENSE b/third_party/google-chat/LICENSE new file mode 100644 index 00000000..ca2bba77 --- /dev/null +++ b/third_party/google-chat/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/google-chat/README.md b/third_party/google-chat/README.md new file mode 100644 index 00000000..c321cab7 --- /dev/null +++ b/third_party/google-chat/README.md @@ -0,0 +1,53 @@ +# Google Chat + +Cursor plugin that connects agents to [Google Chat](https://chat.google.com) through Google's remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Search spaces and direct messages, list members, read threads and read state, and send messages as the signed-in user. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Google Chat**. +3. Click **Install**, then complete the Google sign-in prompt. + +Or run `/add-plugin google-chat` in chat. + +## MCP + +```json +{ + "mcpServers": { + "google-chat": { + "type": "http", + "url": "https://chatmcp.googleapis.com/mcp/v1" + } + } +} +``` + +Auth is OAuth 2.0 against Google. Cursor prompts for Google sign-in when the plugin connects. + +### Auth status + +This plugin is packaging only. Google's Chat MCP server uses the same Google Workspace OAuth model as the Gmail, Google Drive, and Google Calendar plugins, so it should slot into the same Google Workspace OAuth client path once the Chat scopes are added to that client's consent screen and to the host's allowlist. Until then, sign-in may fail or the server may reject calls with a permissions error. + +Scopes the Chat MCP server requests (per Google's docs): + +- `https://www.googleapis.com/auth/chat.spaces.readonly` +- `https://www.googleapis.com/auth/chat.memberships.readonly` +- `https://www.googleapis.com/auth/chat.messages.readonly` +- `https://www.googleapis.com/auth/chat.messages.create` +- `https://www.googleapis.com/auth/chat.users.readstate.readonly` + +Google also requires `chatmcp.googleapis.com` to be enabled on the OAuth client's Cloud project. Read-only use works with just the API and OAuth client; sending messages additionally requires a Chat app configured in the project's Google Chat API settings (interactive features off). + +## Docs + +- Google MCP setup: https://developers.google.com/workspace/chat/api/guides/configure-mcp-server +- Workspace MCP overview: https://developers.google.com/workspace/guides/configure-mcp-servers + +Logo is the official Google Chat product icon, placed on a white tile with padding so it reads well in the Cursor UI. + +## License + +MIT diff --git a/third_party/google-chat/assets/logo.svg b/third_party/google-chat/assets/logo.svg new file mode 100644 index 00000000..03f68ab2 --- /dev/null +++ b/third_party/google-chat/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/third_party/google-chat/mcp.json b/third_party/google-chat/mcp.json new file mode 100644 index 00000000..a5d1c602 --- /dev/null +++ b/third_party/google-chat/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "google-chat": { + "type": "http", + "url": "https://chatmcp.googleapis.com/mcp/v1" + } + } +}