- Home
- MCP servers
- Jakedahn Deno2 Playwright
Jakedahn Deno2 Playwright
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-jakedahn_deno2-playwright-mcp-server": {
"command": "/path/to/deno2-playwright-mcp-server/playwright-server",
"args": []
}
}
}You can run a Model Context Protocol (MCP) server that leverages Playwright to automate browser interactions. This enables language models to navigate web pages, take screenshots, and run JavaScript in a real browser environment, all through a lightweight Deno-based server that compiles to a standalone binary.
How to use
Use this server with an MCP client by pointing the client to the local stdio server you start on your machine. The server runs as a local process, and you interact with it through the MCP protocol to automate browser tasks, capture screenshots, and execute scripts within a real browser context.
How to install
Prerequisites you need before installation:
- A modern operating system (macOS, Linux, or Windows)
- Deno 2 installed on your system
- Git to clone or fetch repository contents if you work from source
Build the server binaries for your platform using the provided tasks. Run the commands below in your project directory. Each command compiles the server for a different target.
deno task build-mac
deno task build-linux-x86_64
deno task build-linux-ARM64
deno task build-windows-x86_64