PlayMCP MCP Server

Comprehensive MCP server for browser automation with 38 powerful Playwright tools

Local serverstdioTypeScript

What is the PlayMCP MCP server?

Comprehensive MCP server for browser automation with 38 powerful Playwright tools. That is what the playmcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

A comprehensive MCP (Model Context Protocol) server for browser automation using Playwright. This server provides 38 powerful tools for web scraping, testing, and automation.

Getting it running

playwright on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Navigation — navigate, goForward, goBack (via scroll)
  • Interaction — click, type, hover, dragAndDrop, selectOption
  • Keyboard — pressKey
  • Waiting — waitForText, waitForSelector
  • Screenshots — screenshot, takeScreenshot (enhanced)
  • Forms — getForms
  • openBrowser — Launch browser instance
  • navigate — Navigate to URL
  • click — Click element
  • type — Type text into element
  • moveMouse — Move mouse to coordinates
  • scroll — Scroll page with feedback

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch PlayMCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. PlayMCP's toolset — Navigation, Interaction, Keyboard and 11 more — is a fair guide to whether it matches your workflow. It is maintained by jomon003; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
Navigationnavigate, goForward, goBack (via scroll)
Interactionclick, type, hover, dragAndDrop, selectOption
KeyboardpressKey
WaitingwaitForText, waitForSelector
Screenshotsscreenshot, takeScreenshot (enhanced)
FormsgetForms
openBrowserLaunch browser instance
navigateNavigate to URL
clickClick element
typeType text into element
moveMouseMove mouse to coordinates
scrollScroll page with feedback
screenshotTake screenshot
getPageSourceGet HTML source

How to install the PlayMCP MCP server

{
  "mcpServers": {
    "playmcp-browser": {
      "type": "stdio",
      "command": "node",
      "args": ["/Users/username/PlayMCP/dist/server.js"],
      "description": "Browser automation with Playwright"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use PlayMCP to Navigation.
  • Use PlayMCP to Interaction.
  • Use PlayMCP to Keyboard.

Frequently asked questions

It connects PlayMCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Navigation, Interaction, Keyboard, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with PlayMCP directly.