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 @@ -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",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
34 changes: 34 additions & 0 deletions third_party/plaud/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions third_party/plaud/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 `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.
21 changes: 21 additions & 0 deletions third_party/plaud/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.
64 changes: 64 additions & 0 deletions third_party/plaud/README.md
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions third_party/plaud/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.
12 changes: 12 additions & 0 deletions third_party/plaud/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mcpServers": {
"plaud": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@plaud-ai/mcp@latest"
]
}
}
}
Loading