fix: Enable environment variable inheritance for Smithery cloud services authentication

This commit is contained in:
KyleF0X 2025-05-28 13:06:53 +10:00
parent 27af7a6f22
commit 438395c768

View File

@ -103,7 +103,7 @@ async def lifespan(app: FastAPI):
server_params = StdioServerParameters(
command=command,
args=args,
env={**env},
env={**os.environ, **env},
)
async with stdio_client(server_params) as (reader, writer):