feat: MCP Browser - servidor MCP para automação de navegador com Playwright

This commit is contained in:
2026-03-25 10:16:14 -03:00
commit c1d716bb84
24 changed files with 2803 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
const browser = require('../browser');
module.exports = async ({ timeout = 15000 }) => {
await browser.start();
const p = await browser.ensurePage();
const oldUrl = p.url();
try {
await Promise.race([
p.waitForNavigation({ timeout, waitUntil: 'domcontentloaded' }),
p.waitForLoadState('domcontentloaded', { timeout })
]);
} catch (e) {
}
const newUrl = p.url();
return {
success: true,
action: "smart_wait_navigation",
oldUrl,
newUrl,
changed: oldUrl !== newUrl
};
};