Community MCP server built on Microsoft Playwright.
npx -y @playwright/mcp@latest
{
"mcpServers": {
"playwright": {
"args": [
"-y",
"@playwright/mcp@latest"
],
"command": "npx"
}
}
}Click an element using accessibility ref
{
"type": "object",
"required": [
"ref"
],
"properties": {
"ref": {
"type": "string"
}
}
}// Input
{
"ref": "link[More information]"
}// Output
{
"success": true
}Navigate browser to a URL
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
}
}
}// Input
{
"url": "https://example.com"
}// Output
{
"title": "Example Domain"
}Take a screenshot of the page
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
}
}
}Community MCP server built on Microsoft Playwright.
Playwright provides 4 tools including browser_click, browser_navigate, browser_screenshot, and 1 more.
Yes, Playwright is completely free to use with no usage limits on the free tier.
You can install Playwright using the following command: npx -y @playwright/mcp@latest. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
// Input
{
"name": "homepage"
}// Output
{
"imageData": "iVBORw0KGgo..."
}Get accessibility snapshot of the page
{
"type": "object",
"properties": {}
}// Input
{}// Output
{
"snapshot": "- heading: Example Domain\\n- link: More information"
}Playwright is listed under the Development Tools category in the AgentForge MCP registry.
Playwright has a current uptime of 99.82% with an average response time of 650ms.
To connect Playwright, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Playwright's tools via the Model Context Protocol.