From 999084ab3f68df1c8517c05e02bdf4ea9feaa0ee Mon Sep 17 00:00:00 2001 From: iamdoubz <> Date: Tue, 7 Jul 2026 00:10:37 -0500 Subject: [PATCH] feat(mcp): default_settings() covers the new MCP fields (T10.4) Keeps default_settings() exhaustive now that Settings grew mcp_* fields. --- src-tauri/src/commands.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs index 0b6cede..059f976 100644 --- a/src-tauri/src/commands.rs +++ b/src-tauri/src/commands.rs @@ -65,6 +65,11 @@ fn default_settings() -> Settings { audio_output_device: None, microphone_enabled: true, audio_input_device: None, + mcp_enabled: false, + mcp_transport: "http".into(), + mcp_port: 4849, + mcp_expose: "none".into(), + mcp_expose_recordings: false, } }