Conversation
Register Plaud as a third-party stdio MCP plugin so agents can search recordings, transcripts, notes, and action items via npx @plaud-ai/mcp. Co-authored-by: Rohan Shah <rshah2020@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
third_party/plaud, a plugin for Plaud's official MCP server (@plaud-ai/mcp), and registers it inmarketplace.jsonand the root README.MCP
Plaud does not publish a hosted MCP endpoint for Cursor. The official server is local stdio via npx, matching their docs:
{ "mcpServers": { "plaud": { "type": "stdio", "command": "npx", "args": ["-y", "@plaud-ai/mcp@latest"] } } }Auth is browser OAuth through the server's
logintool — no API keys, client secrets, or pluginvariables. Requires Node.js ≥ 20 andnpxon PATH.Scaffold
Mirrors existing
third_party/plugins (plugin.json,mcp.json,README.md,CHANGELOG.md,LICENSE,assets/logo.svg). Logo is a simple placeholder SVG; swap for Plaud's official mark if preferred.Validation
node scripts/validate-plugins.mjspassed.No secrets bundled.
Note
Low Risk
Adds marketplace metadata and a stdio MCP wrapper only; no bundled credentials or changes to core app logic.
Overview
Adds a new Plaud Cursor integration so agents can search recordings, transcripts, notes, and action items via Plaud’s official MCP server.
The plugin lives under
third_party/plaudwith the usual manifest (plugin.json),mcp.json, docs, changelog, license, and placeholder logo. MCP is configured as local stdio throughnpx -y @plaud-ai/mcp@latest(not a hosted endpoint). Auth is browser OAuth via the server’slogintool—no plugin API keys or secrets.Plaud is registered in
.cursor-plugin/marketplace.jsonand the root README integrations table alongside other meeting/transcript plugins (e.g. Fathom, Otter).Reviewed by Cursor Bugbot for commit 6958dfc. Bugbot is set up for automated code reviews on this repo. Configure here.