From 15d73ef3e7d61cdc434351e7dcc5b61673788bd8 Mon Sep 17 00:00:00 2001 From: "Tommy D. Rossi" Date: Sun, 16 Nov 2025 12:35:38 +0100 Subject: [PATCH] Update mcp.ts --- playwriter/src/mcp.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwriter/src/mcp.ts b/playwriter/src/mcp.ts index cbb0bdd..cecb5e6 100644 --- a/playwriter/src/mcp.ts +++ b/playwriter/src/mcp.ts @@ -108,7 +108,7 @@ async function getCurrentPage() { const server = new McpServer({ name: 'playwriter', - title: 'Playwright MCP Server', + title: 'The better playwright MCP: works as a browser extension. No context bloat. More capable.', version: '1.0.0', }) @@ -121,7 +121,7 @@ server.tool( code: z .string() .describe( - 'JavaScript code to execute with page and context in scope. Should be one line, using ; to execute multiple statements. To execute complex actions call execute multiple times. ', + 'JavaScript code to execute with page, state, context in scope. Should be one line, using ; to execute multiple statements. To execute complex actions call execute multiple times. ', ), timeout: z.number().default(3000).describe('Timeout in milliseconds for code execution (default: 3000ms)'), },