Add Playwright and GitHub third-party MCP plugins - #193
Merged
Conversation
Wire Microsoft's local Playwright MCP (npx stdio) and GitHub's remote MCP server (PAT auth) into the marketplace, matching existing third_party plugin layout and manifests. Co-authored-by: Sam Sokolin <SamSokolin@users.noreply.github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Playwright npx may hang
- Added the
-yflag to the npx args inthird_party/playwright/mcp.json(and the matching README snippet and prose) so the first uncached launch cannot block on an interactive install prompt over the MCP stdio pipe.
- Added the
Or push these changes by commenting:
@cursor push 77b00b0975
Preview (77b00b0975)
diff --git a/third_party/playwright/README.md b/third_party/playwright/README.md
--- a/third_party/playwright/README.md
+++ b/third_party/playwright/README.md
@@ -14,7 +14,7 @@
## Requirements
-This is a **local stdio** MCP server. Cursor launches it with `npx @playwright/mcp@latest`, so the machine running Cursor needs **Node.js** installed and on `PATH`.
+This is a **local stdio** MCP server. Cursor launches it with `npx -y @playwright/mcp@latest`, so the machine running Cursor needs **Node.js** installed and on `PATH`.
The first run downloads Playwright's browser binaries. That can take a minute and needs network access; later runs reuse the cached browsers.
@@ -25,7 +25,7 @@
"mcpServers": {
"playwright": {
"command": "npx",
- "args": ["@playwright/mcp@latest"]
+ "args": ["-y", "@playwright/mcp@latest"]
}
}
}
diff --git a/third_party/playwright/mcp.json b/third_party/playwright/mcp.json
--- a/third_party/playwright/mcp.json
+++ b/third_party/playwright/mcp.json
@@ -2,7 +2,7 @@
"mcpServers": {
"playwright": {
"command": "npx",
- "args": ["@playwright/mcp@latest"]
+ "args": ["-y", "@playwright/mcp@latest"]
}
}
}You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit 4ce303f. Configure here.
SamSokolin
marked this pull request as ready for review
August 6, 2026 17:48
Avoid first-launch hangs when npx would otherwise prompt for install confirmation over non-interactive MCP stdio. Co-authored-by: Sam Sokolin <SamSokolin@users.noreply.github.com>
github-actions Bot
added a commit
to SmailG/claude-cursor-plugins
that referenced
this pull request
Aug 7, 2026
…ty MCP plugins (cursor#193) chore: sync with cursor/plugins — Add Playwright and GitHub third-party MCP plugins (cursor#193)
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.


Summary
Adds the two highest-demand MCP connectors missing from Cursor's marketplace relative to Claude Code: Playwright (~60k installs) and GitHub (~83k installs).
Playwright (
third_party/playwright)Local stdio MCP server from Microsoft — no credentials.
{ "mcpServers": { "playwright": { "command": "npx", "args": ["-y", "@playwright/mcp@latest"] } } }Requires Node.js on the user's machine.
-yskips npx's install confirmation so the first launch cannot hang waiting for interactive input over stdio. First run also downloads Playwright browser binaries.GitHub (
third_party/github)GitHub's official remote MCP server — PAT-based auth today.
{ "mcpServers": { "github": { "type": "http", "url": "https://api.githubcopilot.com/mcp/", "headers": { "Authorization": "Bearer ${GITHUB_PERSONAL_ACCESS_TOKEN}" } } } }Exact URL/header shape matches what Claude Code and Codex ship. Declares
GITHUB_PERSONAL_ACCESS_TOKENvia the pluginvariablesblock (same pattern as Gong/Salesforce).GitHub's remote server also supports OAuth; we can revisit that as a follow-up if Cursor's plugin auth flow supports it.
Also
.cursor-plugin/marketplace.jsonVerification
→
All plugins validated successfully.