skyvern run mcp cli (#2039)

This commit is contained in:
Shuchang Zheng 2025-03-30 16:42:12 -07:00 committed by GitHub
parent 4e7dd87f99
commit 09c5d10817
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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