Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions src/fastmcp/utilities/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,20 +233,6 @@ def log_server_banner(server: FastMCP[Any]) -> None:
Align.center(info_table),
)

# v3 notice banner (shown below main panel)
v3_line1 = Text("✨ FastMCP 3.0 is coming!", style="bold")
v3_line2 = Text.assemble(
("Pin ", "dim"),
("`fastmcp < 3`", "dim bold"),
(" in production, then upgrade when you're ready.", "dim"),
)
v3_notice = Panel(
Group(Align.center(v3_line1), Align.center(v3_line2)),
border_style="blue",
padding=(0, 2),
width=80,
)

panel = Panel(
panel_content,
border_style="dim",
Expand All @@ -259,7 +245,6 @@ def log_server_banner(server: FastMCP[Any]) -> None:

# Build output elements
output_elements: list[Align | Panel | str] = ["\n", Align.center(panel)]
output_elements.append(Align.center(v3_notice))

# Add update notice if a newer version is available (shown last for visibility)
if newer_version:
Expand Down
Loading