From pw
Integrates Playwright with BrowserStack for remote cross-browser testing and automation. Runs locally as subprocess, requires BrowserStack username and access key.
npx claudepluginhub alirezarezvani/claude-skills --plugin pwAdd to your .mcp.json:
{
"mcpServers": {
"pw-browserstack": {
"command": "npx",
"args": [
"tsx",
"${CLAUDE_PLUGIN_ROOT}/integrations/browserstack-mcp/src/index.ts"
],
"env": {
"BROWSERSTACK_USERNAME": "${BROWSERSTACK_USERNAME}",
"BROWSERSTACK_ACCESS_KEY": "${BROWSERSTACK_ACCESS_KEY}"
}
}
}
}Replace placeholder values for: BROWSERSTACK_ACCESS_KEY
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
npxBROWSERSTACK_USERNAME=${BROWSERSTACK_USERNAME}BROWSERSTACK_ACCESS_KEY=${BROWSERSTACK_ACCESS_KEY}