diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index ed6afb06..e034b7d3 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -293,6 +293,11 @@ "source": "third_party/fathom", "description": "Search meetings and pull transcripts and summaries." }, + { + "name": "plaud", + "source": "third_party/plaud", + "description": "Search Plaud recordings, transcripts, notes, and action items." + }, { "name": "craft", "source": "third_party/craft", diff --git a/README.md b/README.md index 21772a15..341d30a3 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `fireflies` | [Fireflies](third_party/fireflies/) | Cursor | Integrations | Search meeting transcripts, summaries, and action items. | | `otter` | [Otter.ai](third_party/otter/) | Cursor | Integrations | Search meeting history and pull full transcripts. | | `fathom` | [Fathom](third_party/fathom/) | Cursor | Integrations | Search meetings and pull transcripts and summaries. | +| `plaud` | [Plaud](third_party/plaud/) | Cursor | Integrations | Search Plaud recordings, transcripts, notes, and action items. | | `craft` | [Craft](third_party/craft/) | Cursor | Integrations | Search, create, and update documents and daily notes. | | `mem` | [Mem](third_party/mem/) | Cursor | Integrations | Capture, search, and organize notes and collections. | | `readwise` | [Readwise](third_party/readwise/) | Cursor | Integrations | Search highlights and Reader documents, save articles. | diff --git a/third_party/plaud/.cursor-plugin/plugin.json b/third_party/plaud/.cursor-plugin/plugin.json new file mode 100644 index 00000000..427c8e55 --- /dev/null +++ b/third_party/plaud/.cursor-plugin/plugin.json @@ -0,0 +1,34 @@ +{ + "name": "plaud", + "displayName": "Plaud", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Search Plaud recordings, transcripts, notes, and action items.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://docs.plaud.ai/plaud-mcp-cli/mcp", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "plaud", + "meetings", + "transcripts", + "recordings", + "notes", + "action-items", + "mcp" + ], + "category": "integrations", + "tags": [ + "plaud", + "meetings", + "mcp", + "transcripts" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/plaud/CHANGELOG.md b/third_party/plaud/CHANGELOG.md new file mode 100644 index 00000000..12a4a693 --- /dev/null +++ b/third_party/plaud/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `plaud` MCP server via local stdio (`npx -y @plaud-ai/mcp@latest`). +- Auth uses Plaud browser OAuth through the server's `login` tool — no API key or client secret to configure. +- Requires Node.js ≥ 20 and `npx` on the machine running Cursor. diff --git a/third_party/plaud/LICENSE b/third_party/plaud/LICENSE new file mode 100644 index 00000000..ca2bba77 --- /dev/null +++ b/third_party/plaud/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/plaud/README.md b/third_party/plaud/README.md new file mode 100644 index 00000000..0466ecbc --- /dev/null +++ b/third_party/plaud/README.md @@ -0,0 +1,64 @@ +# Plaud + +Cursor plugin that connects agents to [Plaud](https://www.plaud.ai) through Plaud's official [Model Context Protocol](https://modelcontextprotocol.io/) server, run locally by Cursor. + +Search recordings, pull transcripts and AI notes, and draft follow-ups from meeting action items without leaving the agent. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Plaud**. +3. Click **Install**, then ask the agent to log you into Plaud. + +Or run `/add-plugin plaud` in chat. + +## MCP + +```json +{ + "mcpServers": { + "plaud": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@plaud-ai/mcp@latest" + ] + } + } +} +``` + +Plaud does not publish a hosted MCP endpoint for Cursor. Its official server runs locally over stdio and authenticates with browser OAuth — ask the agent to **log me into Plaud**, which opens Plaud's authorize page via the `login` tool. + +## Before you connect + +1. Install [Node.js](https://nodejs.org/) 20 or newer so `npx` is on your PATH. +2. Have a Plaud account. +3. After installing the plugin, ask the agent: `Log me into Plaud`. Complete Authorize in the browser, then return to Cursor. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Auth | `login`, `logout`, `get_current_user` | +| Recordings | `list_files` (keyword / date filters), `get_file` | +| Notes & transcripts | `get_note`, `get_transcript` | + +The npm package is the source of truth for tool names and schemas. + +## Notes + +- This is a local stdio server, so `npx` has to be available on the machine running Cursor. It downloads `@plaud-ai/mcp` on first run. +- Claude Web and ChatGPT Web use separate hosted Plaud connectors; this plugin is the Cursor/local stdio path from [Plaud's MCP docs](https://docs.plaud.ai/plaud-mcp-cli/mcp). +- Tokens are stored under `~/.plaud` by the official server. If refresh fails, delete `~/.plaud/tokens-mcp.json` and sign in again. +- Tool calls run as the Plaud user who authorizes the connection. + +## Docs + +- Plaud MCP: https://docs.plaud.ai/plaud-mcp-cli/mcp +- npm package: https://www.npmjs.com/package/@plaud-ai/mcp + +## License + +MIT diff --git a/third_party/plaud/assets/logo.svg b/third_party/plaud/assets/logo.svg new file mode 100644 index 00000000..22f399ee --- /dev/null +++ b/third_party/plaud/assets/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/third_party/plaud/mcp.json b/third_party/plaud/mcp.json new file mode 100644 index 00000000..bd6a5b26 --- /dev/null +++ b/third_party/plaud/mcp.json @@ -0,0 +1,12 @@ +{ + "mcpServers": { + "plaud": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@plaud-ai/mcp@latest" + ] + } + } +}