A Model Context Protocol (MCP) server that provides web development tools for AI assistants. Enables browser automation, DOM inspection, network monitoring, and console analysis through Playwright.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"web-developer-mcp": {
"args": [
"-y",
"web-developer-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides web development tools for AI assistants. Enables browser automation, DOM inspection, network monitoring, and console analysis through Playwright.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'web-developer-mcp' 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.
No known CVEs.
Checked web-developer-mcp against OSV.dev.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe 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 developer-tools / browser
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 Web Developer Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides web development tools for coding AI assistants like Claude Code, Cursor, and other AI-powered development environments. This server enables AI assistants to inspect web pages, monitor network requests, extract HTML, analyze console output, and examine DOM elements in real-time through a Playwright-powered browser.
Perfect for debugging web applications, testing UI components, analyzing API behavior, and understanding page behavior during development.
When working with AI coding assistants, you often need to:
This MCP server provides your AI assistant with direct browser access to help with these tasks.
Add this server to your AI assistant's MCP configuration (see Configuration section below for specific setup instructions).
git clone https://github.com/Artmann/web-developer-mcp.git
cd web-developer-mcp
bun install
Start the MCP server:
bun start
The server will start and wait for MCP client connections from your AI assistant.
Add this server to your AI assistant's MCP configuration:
Or manually add to your MCP configuration file:
{
"web-developer-mcp": {
"command": "npx",
"args": ["web-developer-mcp@latest"]
}
}
Add this server using the Claude Code CLI:
claude mcp add -s user web-developer-mcp npx web-developer-mcp@latest
browser-navigateNavigate the browser to a specific URL and start monitoring the page.
Parameters:
url (string): The URL to navigate toExample use case: Navigate to http://localhost:3000 to debug your
development server
browser-reloadReload the current page and refresh console logs.
No parameters required
Use case: Refresh the page after code changes or to clear current state
click-elementClick on an element (button, link, etc.) using a CSS selector.
Parameters:
selector (string): CSS selector for the element to click (e.g.
"button.submit", "#login-btn")Example use cases:
fill-inputFill a form input field with text.
Parameters: