From 09c5d10817f2c57a1ff5d9511a86f8ce939c6ba4 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Sun, 30 Mar 2025 16:42:12 -0700 Subject: [PATCH] skyvern run mcp cli (#2039) --- skyvern/cli/commands.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/skyvern/cli/commands.py b/skyvern/cli/commands.py index bfd5092f..49e81cf6 100644 --- a/skyvern/cli/commands.py +++ b/skyvern/cli/commands.py @@ -8,6 +8,8 @@ import typer from skyvern.utils import migrate_db app = typer.Typer() +run_app = typer.Typer() +app.add_typer(run_app, name="run") def command_exists(command: str) -> bool: @@ -125,3 +127,8 @@ def init( @app.command(name="migrate") def migrate() -> None: migrate_db() + + +@run_app.command(name="mcp") +def run_mcp() -> None: + pass