From 09ff69603479360096b721a9f952b7424ed0c098 Mon Sep 17 00:00:00 2001 From: wanghaoran Date: Sat, 23 Aug 2025 15:50:37 +0800 Subject: [PATCH] fix: no banner when run profile in stdio mode --- src/mcpm/commands/profile/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcpm/commands/profile/run.py b/src/mcpm/commands/profile/run.py index af77460f..b1b6e62f 100644 --- a/src/mcpm/commands/profile/run.py +++ b/src/mcpm/commands/profile/run.py @@ -117,7 +117,7 @@ async def run_profile_fastmcp( else: # Run the aggregated proxy over stdio (default) logger.info(f"Starting profile '{profile_name}' over stdio") - await proxy.run_stdio_async() + await proxy.run_stdio_async(show_banner=False) return 0