From 58dbac37de886788ef49753ba45af0b9ab63ae84 Mon Sep 17 00:00:00 2001 From: Anibal Angulo Date: Wed, 25 Feb 2026 19:56:40 +0000 Subject: [PATCH] Add streamable-http transport option --- utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/config.py b/utils/config.py index 04f81d4..d2dd7ca 100644 --- a/utils/config.py +++ b/utils/config.py @@ -7,7 +7,7 @@ def _parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser() parser.add_argument( "--transport", - choices=["stdio", "sse"], + choices=["stdio", "sse", "streamable-http"], default="stdio", ) parser.add_argument("--host", default="0.0.0.0")