From da2466462e7fdd904ec39a6963f0ec11427aacd0 Mon Sep 17 00:00:00 2001 From: Akira Date: Mon, 2 Mar 2026 02:30:56 +0900 Subject: [PATCH] =?UTF-8?q?windmill=5Fupdate=5Fflow:=20=E3=82=A8=E3=83=B3?= =?UTF-8?q?=E3=83=89=E3=83=9D=E3=82=A4=E3=83=B3=E3=83=88=E3=82=92=20flows/?= =?UTF-8?q?edit=20=E2=86=92=20flows/update=20=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Windmill API の正しいフロー更新エンドポイントは /flows/update/{path}。 /flows/edit/{path} は 404 を返す(誤ったエンドポイント)。 Co-Authored-By: Claude Sonnet 4.6 --- mcp/windmill_mcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp/windmill_mcp.py b/mcp/windmill_mcp.py index f14189f..8a445aa 100644 --- a/mcp/windmill_mcp.py +++ b/mcp/windmill_mcp.py @@ -242,7 +242,7 @@ def windmill_update_flow(path: str, summary: str, flow_definition: str, descript } resp = httpx.post( - _api(f"flows/edit/{path}"), + _api(f"flows/update/{path}"), headers=_headers(), json=payload, timeout=30,