From 6c7a54a83e700d67af7d6ef12ebf7b0ef2cf8fce Mon Sep 17 00:00:00 2001 From: esus Date: Tue, 14 Oct 2025 15:44:38 +1300 Subject: [PATCH] Revert a non working initalized call again. --- mcp_browser/proxy.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mcp_browser/proxy.py b/mcp_browser/proxy.py index 66c1513..fa29660 100644 --- a/mcp_browser/proxy.py +++ b/mcp_browser/proxy.py @@ -238,11 +238,7 @@ class MCPBrowser: # Initialize if needed for other requests if not self._initialized: await self.initialize() - # After initalization we MUST return notfications iniitialized - return { - "jsonrpc": "2.0", - "method": "notifications/initialized" - } + # Check if this is a virtual tool call if jsonrpc_object.get("method") == "tools/call": tool_name = jsonrpc_object.get("params", {}).get("name")