From f01c8fd7f46797e2ce231e9d0285713ac2508565 Mon Sep 17 00:00:00 2001 From: nate nowack Date: Thu, 19 Mar 2026 09:17:48 -0500 Subject: [PATCH] Update startup banner deploy URL to Prefect Horizon (#3557) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with Claude Code Co-authored-by: Claude Opus 4.6 --- src/fastmcp/utilities/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastmcp/utilities/cli.py b/src/fastmcp/utilities/cli.py index 070931fa6..cac3e65e3 100644 --- a/src/fastmcp/utilities/cli.py +++ b/src/fastmcp/utilities/cli.py @@ -221,7 +221,7 @@ def log_server_banner(server: FastMCP[Any]) -> None: 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") + info_table.add_row("🚀", "Deploy free:", "https://horizon.prefect.io") # Create panel with logo, title, and information using Group docs_url = Text("https://gofastmcp.com", style="dim")