Playwright Server MCP
Servidor MCP del servidor de dramaturgos
\Un servidor MCP con herramientas de dramaturgo\
Componentes
Recursos
El servidor implementa un sistema de almacenamiento de notas simple con:
Nota personalizada: esquema URI para acceder a notas individuales
Cada recurso de nota tiene un nombre, una descripción y un tipo MIME de texto simple.
Indicaciones
El servidor proporciona un único mensaje:
resumir-notas: Crea resúmenes de todas las notas almacenadas
Argumento opcional "estilo" para controlar el nivel de detalle (breve/detallado)
Genera un mensaje que combina todas las notas actuales con la preferencia de estilo.
Herramientas
El servidor implementa las siguientes herramientas:
playwright_navigate: Navega a una URL específica. Esta operación creará automáticamente una nueva sesión si no hay ninguna activa.Requiere un argumento
url(cadena).
playwright_screenshot: toma una captura de pantalla de la página actual o de un elemento específico.Requiere un argumento
name(cadena) para el nombre del archivo de captura de pantalla.Argumento
selectoropcional (cadena) para especificar un selector CSS para el elemento que se capturará. Si no se proporciona ningún selector, se captura una página completa.
playwright_click: hace clic en un elemento de la página usando un selector CSS.Requiere un argumento
selector(cadena) para especificar el selector CSS del elemento en el que se hará clic.
playwright_fill: Rellena un campo de entrada.Requiere un argumento
selector(cadena) para especificar el selector CSS para el campo de entrada.Requiere un argumento
value(cadena) para especificar el valor a completar.
playwright_evaluate: ejecuta código JavaScript en la consola del navegador.Requiere un argumento
script(cadena) para especificar el código JavaScript a ejecutar.
playwright_click_text: hace clic en un elemento de la página según su contenido de texto.Requiere un argumento
text(cadena) para especificar el contenido de texto del elemento en el que hacer clic.
playwright_get_text_content: Obtiene el contenido de texto de todos los elementos visibles.playwright_get_html_content: Obtener el contenido HTML de la página.Requiere un argumento
selector(cadena) para especificar el selector CSS para el elemento.
Related MCP server: Cloudflare Playwright MCP
Configuración
[TODO: Agregar detalles de configuración específicos para su implementación]
Inicio rápido
Instalar
Escritorio de Claude
En MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json En Windows: %APPDATA%/Claude/claude_desktop_config.json
Desarrollo
Construcción y publicación
Para preparar el paquete para su distribución:
Sincronizar dependencias y actualizar el archivo de bloqueo:
uv syncDistribuciones de paquetes de compilación:
uv buildEsto creará distribuciones de origen y de rueda en el directorio dist/ .
Publicar en PyPI:
uv publishNota: Deberás configurar las credenciales de PyPI a través de variables de entorno o indicadores de comando:
Token:
--tokenoUV_PUBLISH_TOKENO nombre de usuario/contraseña:
--username/UV_PUBLISH_USERNAMEy--password/UV_PUBLISH_PASSWORD
Depuración
Dado que los servidores MCP se ejecutan en stdio, la depuración puede ser complicada. Para una experiencia óptima, recomendamos usar el Inspector MCP .
Puede iniciar el Inspector MCP a través de npm con este comando:
npx @modelcontextprotocol/inspector uv --directory C:\Users\YUNYING\Documents\project\python\mcp\playwright-server run playwright-serverAl iniciarse, el Inspector mostrará una URL a la que podrá acceder en su navegador para comenzar a depurar.
Available Tools
8 toolsplaywright_clickC
Click an element on the page using CSS selector
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector for element to click |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the basic action but lacks critical details: it doesn't mention error handling (e.g., what happens if the selector doesn't exist), whether it waits for the element to be clickable, if it triggers page navigation, or any side effects like opening new windows. This leaves significant gaps for safe and effective use.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with zero wasted words. It front-loads the key action ('click') and efficiently conveys the essential information (target and method), making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a browser automation tool with no annotations and no output schema, the description is insufficient. It omits behavioral traits (e.g., error handling, waiting behavior), output details, and guidance on usage relative to siblings. For a tool that interacts with dynamic web pages, more context is needed to ensure reliable agent operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with the single parameter 'selector' fully documented in the schema as 'CSS selector for element to click'. The description adds no additional semantic context beyond implying the parameter is used for clicking, so it meets the baseline of 3 where the schema does the heavy lifting without extra value from the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('click') and target ('element on the page'), and specifies the method ('using CSS selector'). It distinguishes itself from generic clicking by mentioning the CSS selector approach, though it doesn't explicitly differentiate from its sibling 'playwright_click_text' which presumably clicks based on text content rather than selector.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'playwright_click_text' (for text-based clicking) or other interaction tools such as 'playwright_fill'. There's no mention of prerequisites (e.g., requiring a page to be loaded) or typical use cases, leaving the agent to infer usage from context alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_click_textB
Click an element on the page by its text content
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text content of the element to click |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the action ('click') but doesn't disclose behavioral traits like what happens if multiple elements match the text, whether it waits for elements to be clickable, error handling, or performance implications. The description is minimal and lacks operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose with zero wasted words. It's appropriately sized and front-loaded, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a browser automation tool with no annotations and no output schema, the description is incomplete. It doesn't cover behavioral aspects like return values, error conditions, or interaction with page state, leaving significant gaps for an AI agent to understand how to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (the single parameter 'text' is fully described in the schema as 'Text content of the element to click'), so the baseline is 3. The description adds no additional meaning beyond what the schema provides, such as examples, formatting notes, or edge cases for text matching.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('click') and target ('element on the page by its text content'), distinguishing it from siblings like playwright_click (which likely uses different targeting) and playwright_fill (which performs a different action). It uses a precise verb+resource+targeting method combination.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like playwright_click (presumably using selectors) or other sibling tools. There's no mention of prerequisites, context, or exclusions for text-based clicking versus other methods.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_evaluateC
Execute JavaScript in the browser console
| Name | Required | Description | Default |
|---|---|---|---|
| script | Yes | JavaScript code to execute |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe execution context (e.g., runs in current page context, returns console output, may affect page state), error handling, or security implications. For a JavaScript execution tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with zero wasted words. It's front-loaded with the core functionality and appropriately sized for a tool with one parameter. Every word earns its place in conveying the essential purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a JavaScript execution tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after execution (e.g., returns last expression value, console output, or errors), doesn't mention execution context or limitations, and provides no examples. Given the complexity of browser JavaScript execution and lack of structured data, more completeness is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with the single 'script' parameter well-documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides (e.g., no examples of valid JavaScript, no mention of return value handling). This meets the baseline for high schema coverage but doesn't enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Execute JavaScript in the browser console' clearly states the action (execute) and target (JavaScript in browser console). It distinguishes from siblings like playwright_click or playwright_navigate by focusing on script execution rather than UI interaction or navigation. However, it doesn't explicitly differentiate from potential similar tools beyond the sibling list provided.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention use cases like DOM manipulation, data extraction, or testing scenarios where JavaScript execution is needed over simpler UI actions. No exclusions or prerequisites are stated, leaving the agent to infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_fillC
Fill out an input field
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector for input field | |
| value | Yes | Value to fill |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but provides minimal behavioral context. It doesn't disclose if this requires page interaction permissions, whether it waits for elements, if it handles errors like missing selectors, or what happens on success/failure. 'Fill out' implies a write operation, but no safety or side-effect details are given.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's appropriately sized for a simple tool and front-loaded with the core action, though it could benefit from more detail given the lack of annotations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (a write operation with no annotations and no output schema), the description is incomplete. It doesn't explain return values, error conditions, or behavioral nuances like waiting or validation. For a mutation tool in a browser automation context, this leaves significant gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (selector and value). The description adds no additional meaning beyond what's in the schema, such as examples or constraints (e.g., selector must target an input element). Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Fill out an input field' states a clear action (fill) and target (input field), but it's vague about scope and doesn't distinguish from siblings like playwright_click_text (which might also interact with inputs). It doesn't specify whether this works for all input types or just text fields.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., page must be loaded), exclusions (e.g., not for dropdowns), or comparisons with siblings like playwright_click (for buttons) or playwright_evaluate (for custom scripts).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_get_html_contentC
Get the HTML content of the page
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector for the element |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure but offers minimal insight. It doesn't mention whether this tool requires a loaded page, how it handles missing selectors, if it returns raw HTML or a parsed structure, or any performance considerations like timeouts. The description merely restates the basic function without operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with zero wasted words, making it highly concise and front-loaded. It efficiently communicates the core action without unnecessary elaboration, though this brevity contributes to gaps in other dimensions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete for a tool that interacts with a dynamic environment like a web page. It fails to address key contextual aspects such as error handling, return format (e.g., string vs. structured HTML), dependencies on page state, or how it differs from sibling tools, leaving significant gaps for an AI agent to infer.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting the single 'selector' parameter as a CSS selector for the element. The description adds no additional meaning beyond this, as it doesn't elaborate on selector syntax, examples, or constraints. With high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('HTML content of the page'), making the purpose immediately understandable. However, it doesn't distinguish this tool from its sibling 'playwright_get_text_content', which suggests a similar retrieval function but for text rather than HTML content.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'playwright_get_text_content' for text content or 'playwright_evaluate' for more complex DOM interactions. It lacks context about prerequisites (e.g., requiring a page to be loaded) or exclusions, leaving usage decisions ambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_get_text_contentB
Get the text content of all elements
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden but provides minimal behavioral information. It doesn't disclose whether this is a read-only operation, what happens if no elements exist, performance characteristics, or what format the text content is returned in. The phrase 'all elements' is vague without context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any unnecessary words. It's appropriately sized for a simple tool with no parameters.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and no parameters, the description is insufficient. It doesn't explain what 'all elements' refers to (current page? specific selector?), what format the text is returned in, or how this differs from similar sibling tools. The agent lacks necessary context for proper use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters with 100% schema description coverage, so the description doesn't need to compensate for missing parameter documentation. The baseline for zero parameters is 4, as there are no parameters to explain beyond what's already covered.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and target ('text content of all elements'), which is specific and unambiguous. However, it doesn't differentiate from sibling tools like 'playwright_get_html_content' or explain what 'all elements' means in context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'playwright_get_html_content' or 'playwright_evaluate'. The description doesn't mention prerequisites, context requirements, or typical use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
playwright_screenshotC
Take a screenshot of the current page or a specific element
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| selector | No | CSS selector for element to screenshot,null is full page |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states the action but doesn't describe what happens after the screenshot is taken (e.g., where it's saved, format, size limits), whether it requires specific page states, or potential side effects like pausing execution. This leaves significant gaps for a mutation-like operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste. It's front-loaded with the core action and immediately specifies the scope, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and incomplete parameter documentation, the description is inadequate. It doesn't cover behavioral aspects like output handling (e.g., file paths, errors), usage context, or differentiation from siblings, leaving the agent with insufficient information for reliable use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (only 'selector' has a description). The description adds minimal value beyond the schema by implying 'name' is for the screenshot and 'selector' targets elements, but it doesn't clarify 'name' usage (e.g., filename prefix) or provide examples. With low schema coverage, this doesn't fully compensate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Take a screenshot') and target ('current page or a specific element'), providing a specific verb+resource. However, it doesn't explicitly differentiate from sibling tools like playwright_get_html_content or playwright_get_text_content, which also capture page content but in different formats.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description doesn't mention when to use playwright_screenshot instead of playwright_get_html_content for capturing visual vs. structural content, nor does it specify prerequisites like requiring a page to be loaded first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
- First observed
playwright_click - First observed
playwright_click_text - First observed
playwright_evaluate - First observed
playwright_fill - First observed
playwright_get_html_content - First observed
playwright_get_text_content - First observed
playwright_navigate - First observed
playwright_screenshot
TDQS
Most tools have distinct purposes targeting different page interactions (clicking, filling, navigating, etc.), but 'playwright_get_html_content' and 'playwright_get_text_content' could potentially be confused as both retrieve content from the page, though their descriptions clarify the difference. Overall, the overlap is minimal and manageable.
All tool names follow a consistent 'playwright_' prefix with snake_case and clear verb_noun patterns (e.g., playwright_click, playwright_navigate). This predictability makes it easy for agents to understand and select tools without confusion.
With 8 tools, this server is well-scoped for a Playwright automation purpose, covering essential actions like navigation, interaction, content retrieval, and screenshots. Each tool serves a clear, necessary function without bloat or redundancy.
The toolset covers core web automation tasks effectively, including navigation, element interaction, content extraction, and screenshots. A minor gap exists in advanced operations like handling pop-ups, waiting for elements, or managing sessions explicitly, but agents can likely work around these with the provided tools.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Stealth web automation for AI agents. Login, signup, navigate, screenshot.
Stealth web automation for AI agents. Login, signup, navigate, screenshot.
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
AI-powered web automation. Navigate websites using AI agents for one page or a thousand
Related MCP Servers
- AlicenseBqualityDmaintenanceA server that enables browser automation using Playwright, allowing interaction with web pages, capturing screenshots, and executing JavaScript in a browser environment through LLMs.1218,1221MIT
- AlicenseBqualityFmaintenanceA server that leverages Playwright for automated browser testing and integrates with Cloudflare Workers, enabling AI assistants to control web browsers for navigation, interaction, and screenshots.225,881,527258Apache 2.0
- AlicenseCqualityFmaintenanceA comprehensive MCP server that provides powerful web automation tools using Playwright, enabling web scraping, testing, and browser interaction through natural language commands.43815MIT
- FlicenseNot gradedqualityCmaintenanceA server that enables AI assistants to control a browser through tools, allowing them to perform web automation tasks like navigation, typing, clicking, and taking screenshots.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/blackwhite084/playwright-plus-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server