From a9332c284eb919b49e76a9dbb42dc4de34b8463b Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 6 Jan 2026 20:50:31 -0600 Subject: [PATCH] fix(goose): mcp configuration for stdio now use cmd instead of command --- cubbi/images/goose/goose_plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubbi/images/goose/goose_plugin.py b/cubbi/images/goose/goose_plugin.py index 3911b95..154bdce 100644 --- a/cubbi/images/goose/goose_plugin.py +++ b/cubbi/images/goose/goose_plugin.py @@ -207,13 +207,13 @@ class GoosePlugin(ToolPlugin): self.status.log( f"Adding local MCP extension: {mcp.name} - {mcp.command}" ) - # Goose uses stdio type for local MCPs + # Goose uses stdio type for local MCPs with "cmd" field config_data["extensions"][mcp.name] = { "enabled": True, "name": mcp.name, - "timeout": 60, + "timeout": 300, "type": "stdio", - "command": mcp.command, + "cmd": mcp.command, "args": mcp.args if mcp.args else [], "envs": mcp.env if mcp.env else {}, }