Playwright Record MCP Server

Playwright MCP with video recording capabilities

Local serverstdio

What is the Playwright Record MCP MCP server?

Playwright Record MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Playwright MCP with video recording capabilities.

What you get

Playwright Record MCP is a Model Context Protocol (MCP) server that provides browser automation capabilities using Playwright. This server adds video recording functionality to record browser interactions. It enables LLMs (Large Language Models) to interact with web pages through structured accessibility snapshots, without requiring screenshots or visual models.

  • Fast and lightweight — Uses Playwright's accessibility tree, not pixel-based input
  • LLM-friendly — No vision models needed, operates purely on structured data
  • Deterministic tool application — Avoids ambiguity common with screenshot-based approaches
  • Video recording — Ability to record browser interactions as video

What the assistant can call

Once Playwright Record MCP is connected, these are the calls the assistant has available:

  • browser_record_start — Description: Start recording browser interactions
  • Parameters — - path (string, optional): Path to save the recording file
  • browser_record_stop — Description: Stop and save browser interaction recording
  • browser_record_pause — Description: Pause the current recording
  • browser_record_resume — Description: Resume a paused recording
  • browser_record_list — Description: Return a list of current recording files

Configuration and credentials

  • Node.js 18 or higher - The required browser must be installed (or use the browser_install tool to install it)

Setting it up

Installation goes through your MCP client rather than a global install: point it at @playwright/record-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

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. Playwright Record MCP's toolset — browser_record_start, Parameters, browser_record_stop and 3 more — is a fair guide to whether it matches your workflow. It is maintained by korwabs; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Playwright Record MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the playwright record mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
browser_record_startDescription: Start recording browser interactions
Parameters- path (string, optional): Path to save the recording file
browser_record_stopDescription: Stop and save browser interaction recording
browser_record_pauseDescription: Pause the current recording
browser_record_resumeDescription: Resume a paused recording
browser_record_listDescription: Return a list of current recording files

How to install the Playwright Record MCP MCP server

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": [
        "@playwright/record-mcp@latest",
        "--headless"
      ]
    }
  }
}

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

Configuration

  • Node.js 18 or higher - The required browser must be installed (or use the browser_install tool to install it)

Example prompts to try

  • Use Playwright Record MCP to browser record start.
  • Use Playwright Record MCP to Parameters.
  • Use Playwright Record MCP to browser record stop.

Frequently asked questions

It connects Playwright Record MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (browser_record_start, Parameters, browser_record_stop, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Playwright Record MCP directly.