This is the playwright with typescript automation framework created with MCP server agents without any conding, Framework has detailed loggers, Allure report, POM pattern, Test data management, multiple util functions implemented
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"playwrightwithmcpserver": {
"args": [
"-y",
"playwright"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A robust, production-ready Playwright test automation framework with comprehensive utilities for reliable browser testing, following Page Object Model (POM) design pattern with OOP principles.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'playwright' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
Playwright downloads and installs browsers without verifying the authenticity of the SSL certificate
### Summary Use of `curl` with the `-k` (or `--insecure`) flag in installer scripts allows attackers to deliver arbitrary executables via Man-in-the-Middle (MitM) attacks. This can lead to full system compromise, as the downloaded files are installed as privileged applications. ### Details The following scripts in the `microsoft/playwright` repository at commit [`bee11cbc28f24bd18e726163d0b9b1571b4f26a8`](https://github.com/microsoft/playwright/commit/bee11cbc28f24bd18e726163d0b9b1571b4f26a8) u
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser / developer-tools
Browser automation with Puppeteer for web scraping and testing
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for PlaywrightWithMCPServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A robust, production-ready Playwright test automation framework with comprehensive utilities for reliable browser testing, following Page Object Model (POM) design pattern with OOP principles.
PlaywrightFramework Using MCP/
├── pages/ # Page Object Model (POM)
│ ├── BasePage.ts # Abstract base class
│ ├── LoginPage.ts # Login page object
│ ├── HomePage.ts # Home page object
│ └── index.ts # Page exports
├── tests/ # Test files
│ └── ddms-login.spec.ts # Example login test (POM pattern)
├── utils/ # Utility classes
│ ├── elementFinder.ts # Smart element finding
│ ├── logger.ts # Comprehensive logging
│ ├── screenshotHelper.ts # Screenshot management
│ ├── testHelper.ts # Base test helper
│ ├── testDataManager.ts # Test data management
│ └── index.ts # Utility exports
├── test-data/ # Test data files
├── logs/ # Test execution logs
├── test-results/ # Test results and artifacts
│ ├── html-report/ # HTML test reports
│ ├── screenshots/ # Screenshots
│ └── artifacts/ # Videos and traces
├── .env # Environment variables (not in git)
├── .env.example # Example environment variables
├── playwright.config.ts # Playwright configuration
├── tsconfig.json # TypeScript configuration
├── .eslintrc.json # ESLint configuration
├── .prettierrc # Prettier configuration
├── POM_GUIDE.md # Page Object Model guide
├── REFACTORING_SUMMARY.md # Refactoring details
└── package.json # Project dependencies
npm install
npx playwright install
cp .env.example .env
# Edit .env with your configuration
npm test
npm run test:headed
npm run test:ui
npm run test:chrome
npm run test:firefox
npm run test:webkit
npm run test:debug
npm run test:report
The framework follows Page Object Model (POM) pattern for clean, maintainable tests:
import { test, expect } from '@playwright/test';
import { LoginPage, HomePage } from '../pages';
import { TestDataManager } from '../utils';
test.describe('Login Tests', () => {
let loginPage: LoginPage;
let homePage: HomePage;
t
... [View full README on GitHub](https://github.com/NHonrao/PlaywrightWithMCPServer#readme)