diff --git a/fastapps/cli/commands/init.py b/fastapps/cli/commands/init.py index 42254a6..ccadab6 100644 --- a/fastapps/cli/commands/init.py +++ b/fastapps/cli/commands/init.py @@ -134,7 +134,7 @@ def load_csp_config(): if __name__ == "__main__": print(f"\\n[START] Starting server with {len(tools)} tools") - uvicorn.run(app, host="0.0.0.0", port=8001) + server.mcp.run(transport="streamable-http") ''' diff --git a/pyproject.toml b/pyproject.toml index 9407fcc..ebaed5a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "fastapps" -version = "1.4.2" +version = "1.4.3" description = "A zero-boilerplate framework for building interactive ChatGPT widgets" readme = "README.md" requires-python = ">=3.11"