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
7 changes: 5 additions & 2 deletions .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,11 @@
"name": "hunter",
"source": "third_party/hunter",
"description": "Find and verify emails, discover companies, and save leads."
},
{
"name": "gamma",
"source": "third_party/gamma",
"description": "Generate presentations, documents, and webpages."
}
]
}


1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ 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. |
| `gamma` | [Gamma](third_party/gamma/) | Cursor | Integrations | Generate presentations, documents, and webpages. |
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).

## Repository structure
Expand Down
35 changes: 35 additions & 0 deletions third_party/gamma/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "gamma",
"displayName": "Gamma",
"version": "1.0.0",
"minClientVersions": {
"cursor": "3.13.0"
},
"description": "Generate presentations, documents, and webpages.",
"author": {
"name": "Cursor",
"email": "plugins@cursor.com"
},
"homepage": "https://developers.gamma.app/mcp/gamma-mcp-server.md",
"repository": "https://github.com/cursor/plugins",
"license": "MIT",
"logo": "assets/logo.png",
"keywords": [
"gamma",
"presentations",
"slides",
"documents",
"webpages",
"design",
"export",
"mcp"
],
"category": "integrations",
"tags": [
"gamma",
"presentations",
"productivity",
"mcp"
],
"mcpServers": "./mcp.json"
}
9 changes: 9 additions & 0 deletions third_party/gamma/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this plugin will be documented here.

## 1.0.0 — initial release

- Added the `gamma` MCP server pointing at Gamma's hosted Streamable HTTP endpoint (`https://mcp.gamma.app/mcp`).
- Auth uses OAuth with Gamma user login — no API key or client ID to configure.
- Logo: Gamma's official mark, from the `gamma-app` GitHub organization.
21 changes: 21 additions & 0 deletions third_party/gamma/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.
60 changes: 60 additions & 0 deletions third_party/gamma/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Gamma

Cursor plugin that connects agents to [Gamma](https://developers.gamma.app/mcp/gamma-mcp-server.md) through Gamma's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server.

Generate presentations, documents, and webpages.

## Install

1. Open **Cursor Settings → Plugins**.
2. Search for **Gamma**.
3. Click **Install**, then complete the Gamma sign-in prompt.

Or run `/add-plugin gamma` in chat.

## MCP

```json
{
"mcpServers": {
"gamma": {
"type": "http",
"url": "https://mcp.gamma.app/mcp"
}
}
}
```

Auth is OAuth. Cursor prompts for Gamma sign-in when the plugin connects — there is no client ID or personal access token to configure.

## Before you connect

You need a Gamma account. Generations consume credits from that account.

## What agents can do

| Category | Capabilities |
| --- | --- |
| Generate | Presentations, documents, webpages, and social posts from a prompt, outline, or template |
| Export | PDF, PPTX, and PNG exports |
| Browse | List and read existing Gammas, themes, and folders |
| Analytics | Views and comments on existing Gammas |

The hosted runtime is the source of truth for tool names and schemas.

## Notes

- Generation is asynchronous: tools return a generation id that the agent polls until complete.
- Auth is OAuth 2.0 with Dynamic Client Registration.

## Docs

- Gamma MCP server: https://developers.gamma.app/mcp/gamma-mcp-server.md
- Tools reference: https://developers.gamma.app/mcp/mcp-tools-reference.md
- Server URL: https://mcp.gamma.app/mcp

Logo is Gamma's official mark, from the `gamma-app` GitHub organization.

## License

MIT
Binary file added third_party/gamma/assets/logo.png
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/gamma/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"gamma": {
"type": "http",
"url": "https://mcp.gamma.app/mcp"
}
}
}
Loading