From 5cb777df77c79705ca9a21398b531d880415bec8 Mon Sep 17 00:00:00 2001 From: Kai Date: Wed, 15 Oct 2025 16:59:09 -0400 Subject: [PATCH] fix mcp init --- mcp_gateway/gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp_gateway/gateway.py b/mcp_gateway/gateway.py index 30f5b52..7511f5a 100644 --- a/mcp_gateway/gateway.py +++ b/mcp_gateway/gateway.py @@ -449,7 +449,7 @@ async def lifespan(server: FastMCP) -> AsyncIterator[GetewayContext]: # Initialize the MCP gateway server # Pass description and version if desired -mcp = FastMCP("MCP Gateway", lifespan=lifespan, version="1.0.0") +mcp = FastMCP("MCP Gateway", lifespan=lifespan) # --- Gateway's Own Capability Implementations ---