Skip to content
Open
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 @@ -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",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
34 changes: 34 additions & 0 deletions third_party/google-chat/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
8 changes: 8 additions & 0 deletions third_party/google-chat/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 Google Chat product icon, on a padded white tile.
- Added the `google-chat` MCP server pointing at `https://chatmcp.googleapis.com/mcp/v1`.
21 changes: 21 additions & 0 deletions third_party/google-chat/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.
53 changes: 53 additions & 0 deletions third_party/google-chat/README.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions third_party/google-chat/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/google-chat/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"google-chat": {
"type": "http",
"url": "https://chatmcp.googleapis.com/mcp/v1"
}
}
}
Loading