From add07be347f92f5b13170fe64e46d449187aec0d Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Fri, 11 Jul 2025 18:13:46 -0400 Subject: [PATCH] Improve console width (#1126) --- src/fastmcp/utilities/cli.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fastmcp/utilities/cli.py b/src/fastmcp/utilities/cli.py index 4c488ffde..5a47ecacb 100644 --- a/src/fastmcp/utilities/cli.py +++ b/src/fastmcp/utilities/cli.py @@ -14,11 +14,11 @@ if TYPE_CHECKING: from fastmcp import FastMCP LOGO_ASCII = r""" - _ __ ___ ______ __ __ _____________ ____ ____ - _ __ ___ / ____/___ ______/ /_/ |/ / ____/ __ \ |___ \ / __ \ - _ __ ___ / /_ / __ `/ ___/ __/ /|_/ / / / /_/ / ___/ / / / / / - _ __ ___ / __/ / /_/ (__ ) /_/ / / / /___/ ____/ / __/_/ /_/ / -_ __ ___ /_/ \__,_/____/\__/_/ /_/\____/_/ /_____(_)____/ + _ __ ___ ______ __ __ _____________ ____ ____ + _ __ ___ / ____/___ ______/ /_/ |/ / ____/ __ \ |___ \ / __ \ + _ __ ___ / /_ / __ `/ ___/ __/ /|_/ / / / /_/ / ___/ / / / / / + _ __ ___ / __/ / /_/ (__ ) /_/ / / / /___/ ____/ / __/_/ /_/ / +_ __ ___ /_/ \__,_/____/\__/_/ /_/\____/_/ /_____(_)____/ """.lstrip("\n") @@ -94,7 +94,7 @@ def log_server_banner( title="FastMCP 2.0", title_align="left", border_style="dim", - padding=(2, 5), + padding=(1, 4), expand=False, )