Skip to content

Add Playwright and GitHub third-party MCP plugins - #193

Merged
SamSokolin merged 2 commits into
mainfrom
cursor/playwright-github-mcp-plugins-8be1
Aug 6, 2026
Merged

Add Playwright and GitHub third-party MCP plugins#193
SamSokolin merged 2 commits into
mainfrom
cursor/playwright-github-mcp-plugins-8be1

Conversation

@SamSokolin

@SamSokolin SamSokolin commented Aug 6, 2026

Copy link
Copy Markdown
Collaborator

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. -y skips 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_TOKEN via the plugin variables block (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

  • Registered both under .cursor-plugin/marketplace.json
  • Logos are hand-written self-contained SVGs (official Playwright mark from playwright.dev; GitHub Octocat mark), each on a padded white tile like Gmail for dark-UI legibility
  • Logos should get a design review before these plugins are published

Verification

npm install --no-save ajv ajv-formats
node scripts/validate-plugins.mjs

All plugins validated successfully.

Open in Web Open in Cursor 

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>

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.

Fix All in Cursor

Bugbot Autofix prepared a fix for the issue found in the latest run.

  • ✅ Fixed: Playwright npx may hang
    • Added the -y flag to the npx args in third_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.

Create PR

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.

Comment thread third_party/playwright/mcp.json Outdated
@SamSokolin
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>
@SamSokolin
SamSokolin merged commit 1f4e9b5 into main Aug 6, 2026
1 check passed
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants