An MCP server built in C# that exposes QA automation tools (like browser login) to AI clients. It uses Playwright for browser automation and ExtentReports for HTML reporting with screenshots, allowing AI agent (Claude) to run and inspect real end-to-end tests.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"csharp-mcp": {
"args": [
"run",
"--project",
"C:/createdFolder/McpServer/bin/Debug/net8.0/McpServer.dll"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI-Powered Automated QA Testing with Claude and Playwright
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
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 MCP_SERVER_WITH_PLAYWRIGHT_AND_CLAUDE and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AI-Powered Automated QA Testing with Claude and Playwright
A Model Context Protocol (MCP) server that enables Claude to perform intelligent, automated QA testing on web applications. Get detailed test reports, AI-powered failure analysis, and actionable recommendations - all through natural conversation with Claude.
Before you begin, ensure you have the following installed:
git clone https://github.com/nikhilfufu/MCP_SERVER_WITH_PLAYWRIGHT_AND_CLAUDE.git
cd MCP_SERVER_WITH_PLAYWRIGHT_AND_CLAUDE
dotnet restore
# Install Playwright CLI globally
dotnet tool install --global Microsoft.Playwright.CLI
# Install Chromium browser
pwsh bin/Debug/net8.0/playwright.ps1 install
dotnet build
dotnet run
You should see the MCP server start up successfully.
Locate your Claude Desktop config file:
%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd the MCP server configuration:
{
"mcpServers": {
"csharp-mcp": {
"command": "dotnet",
"args": [
"run",
"--project",
"C:/createdFolder/McpServer/bin/Debug/net8.0/McpServer.dll"
]
}
}
}
⚠️ Important: Use the absolute path to your project directory.
Example Configurations:
Windows:
{
"mcpServers": {
"csharp-mcp": {
"command": "dotnet",
"args": [
"run",
"--project",
"C:/createdFolder/McpServer/bin/Debug/net8.0/McpServer.dll"
]
}
}
}
macOS/Linux:
{
"mcpServers": {
"csharp-mcp": {
"command": "dotnet",
"args": [
"run",
"--project",
... [View full README on GitHub](https://github.com/nikhilfufu/MCP_SERVER_WITH_PLAYWRIGHT_AND_CLAUDE#readme)