MCP Server
Stale
Apache-2.0
io.github.dinesh-nalla-se/playwright-mcp MCP Server
io.github.dinesh-nalla-se/playwright-mcp
What is the io.github.dinesh-nalla-se/playwright-mcp MCP server?
Playwright Tools for MCP
How to install io.github.dinesh-nalla-se/playwright-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
YOUR_API_KEYrequiredsecretYour API key for the service
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"playwright-mcp": {
"command": "npx",
"args": [
"-y",
"@dinesh-nalla-se/playwright-mcp"
],
"env": {
"YOUR_API_KEY": "<YOUR_YOUR_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"playwright-mcp": {
"command": "npx",
"args": [
"-y",
"@dinesh-nalla-se/playwright-mcp"
],
"env": {
"YOUR_API_KEY": "<YOUR_YOUR_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"playwright-mcp": {
"command": "npx",
"args": [
"-y",
"@dinesh-nalla-se/playwright-mcp"
],
"env": {
"YOUR_API_KEY": "<YOUR_YOUR_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"playwright-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dinesh-nalla-se/playwright-mcp"
],
"env": {
"YOUR_API_KEY": "<YOUR_YOUR_API_KEY>"
}
}
}
}Claude Code
claude mcp add playwright-mcp --env YOUR_API_KEY=<YOUR_YOUR_API_KEY> -- npx -y @dinesh-nalla-se/playwright-mcp