Proyecto de automation con Playwright e inteligencia artificial (Midscene).
If you already use MCP Midscene, the mcp midscene mcp server is the piece that lets your assistant work with it directly. Proyecto de automation con Playwright e inteligencia artificial (Midscene).
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
aiTap — Operación de clicaiHover — Operación de hover (pasar el cursor)aiInput — Operación de entrada de textoaiKeyboardPress — Operación de tecladoaiScroll — Operación de desplazamientoaiQuery — Consulta a IAaiAssert — Aserción de IAaiWaitFor — Espera basada en IAConfiguration is passed through the environment: MIDSCENE_MODEL_NAME, OPENAI_API_KEY, MCP_SERVER_REQUEST_TIMEOUT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
The server ships on npm as playwright, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Midscene's toolset — aiTap, aiHover, aiInput and 5 more — is a fair guide to whether it matches your workflow. It is maintained by MauroCor; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against MCP Midscene's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| aiTap | Operación de clic |
| aiHover | Operación de hover (pasar el cursor) |
| aiInput | Operación de entrada de texto |
| aiKeyboardPress | Operación de teclado |
| aiScroll | Operación de desplazamiento |
| aiQuery | Consulta a IA |
| aiAssert | Aserción de IA |
| aiWaitFor | Espera basada en IA |
{
"mcpServers": {
"midscene": {
"command": "npx",
"args": ["-y", "playwright"],
"env": {
"MIDSCENE_MODEL_NAME": "your-value",
"OPENAI_API_KEY": "your-value",
"MCP_SERVER_REQUEST_TIMEOUT": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| MIDSCENE_MODEL_NAME | Configuration value read at startup. | Optional |
| OPENAI_API_KEY | Credential the server authenticates with. | Yes |
| MCP_SERVER_REQUEST_TIMEOUT | Configuration value read at startup. | Optional |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.