diff --git a/crates/goose/src/agents/capabilities.rs b/crates/goose/src/agents/capabilities.rs index 401d9dc94..94a47cd11 100644 --- a/crates/goose/src/agents/capabilities.rs +++ b/crates/goose/src/agents/capabilities.rs @@ -96,7 +96,11 @@ impl Capabilities { let service = McpService::with_timeout(handle, Duration::from_secs(10)); Box::new(McpClient::new(service)) } - SystemConfig::Stdio { ref cmd, ref args, ref envs } => { + SystemConfig::Stdio { + ref cmd, + ref args, + ref envs, + } => { let transport = StdioTransport::new(cmd, args.to_vec(), envs.get_env()); let handle = transport.start().await?; let service = McpService::with_timeout(handle, Duration::from_secs(10));