mcpbrowser 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server.json +1 -1
- package/src/mcp-browser.js +4 -1
package/package.json
CHANGED
package/server.json
CHANGED
package/src/mcp-browser.js
CHANGED
|
@@ -227,7 +227,7 @@ async function main() {
|
|
|
227
227
|
const tools = [
|
|
228
228
|
{
|
|
229
229
|
name: "load_and_extract",
|
|
230
|
-
description: "
|
|
230
|
+
description: "⚠️ BROWSER ACCESS: Opens pages in your Chrome browser with your default profile (saved passwords, extensions, authenticated sessions). Use when normal URL fetching fails due to authentication requirements, login redirects, 401/403 errors, anti-crawler/bot detection, or session requirements. Automatically handles auth redirects, waits for network idle, and supports tab reuse to preserve sessions. Returns both plain text and HTML content.",
|
|
231
231
|
inputSchema: {
|
|
232
232
|
type: "object",
|
|
233
233
|
properties: {
|
|
@@ -237,6 +237,9 @@ async function main() {
|
|
|
237
237
|
required: ["url"],
|
|
238
238
|
additionalProperties: false,
|
|
239
239
|
},
|
|
240
|
+
annotations: {
|
|
241
|
+
title: "Access Authenticated Web Page"
|
|
242
|
+
}
|
|
240
243
|
},
|
|
241
244
|
];
|
|
242
245
|
|