fix tools

This commit is contained in:
Aaron Elijah Mars
2025-06-27 17:19:49 +02:00
parent 59b4274b83
commit 481df972cc
3 changed files with 4 additions and 288 deletions

View File

@@ -213,17 +213,6 @@ function getAvailableTools() {
required: ["condition_type"]
}
},
{
name: "browser_navigate",
description: "Navigate to a URL in the active tab",
inputSchema: {
type: "object",
properties: {
url: { type: "string", description: "URL to navigate to" },
},
required: ["url"],
},
},
// Tab Management Tools
{
@@ -521,9 +510,6 @@ async function handleMCPRequest(message) {
case "page_wait_for":
result = await sendToContentScript('wait_for', params);
break;
case "browser_navigate":
result = await navigateToUrl(params.url);
break;
// Tab management tools
case "tab_create":