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
5 changes: 4 additions & 1 deletion src/fastmcp/utilities/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,10 @@ def log_server_banner(server: FastMCP[Any]) -> None:
info_table.add_column(style="cyan", justify="left") # Label column
info_table.add_column(style="dim", justify="left") # Value column

info_table.add_row("🖥", "Server:", Text(server.name, style="dim"))
server_info = server.name
if server.version:
server_info += f", {server.version}"
info_table.add_row("🖥", "Server:", Text(server_info, style="dim"))
info_table.add_row("🚀", "Deploy free:", "https://fastmcp.cloud")

# Create panel with logo, title, and information using Group
Expand Down
Loading