Skip to content

Commit c815626

Browse files
Merge pull request #7 from semantic-developer/feature/sd-7
rearranged mcp content in settings
2 parents bb7d3e7 + 801d257 commit c815626

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

SemanticDeveloper/SemanticDeveloper/Views/CliSettingsDialog.axaml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@
1818
</StackPanel>
1919
<CheckBox Content="Verbose logging (show suppressed content)" IsChecked="{Binding VerboseLoggingEnabled, Mode=TwoWay}"/>
2020
<Separator/>
21-
<StackPanel>
22-
<CheckBox Content="Enable MCP support (load servers from config)" IsChecked="{Binding McpEnabled, Mode=TwoWay}"/>
23-
<TextBlock Margin="0,4,0,0" Foreground="#888" FontSize="12" Text="Loads MCP servers from mcp_servers.json in your app data folder and passes them directly to Codex." MaxWidth="550" TextWrapping="Wrap"/>
24-
</StackPanel>
25-
<Separator/>
2621
<StackPanel>
2722
<CheckBox Content="Use API Key for Codex CLI" IsChecked="{Binding UseApiKey, Mode=TwoWay}"/>
2823
<TextBlock Text="API Key" Margin="0,8,0,4"/>
@@ -35,15 +30,16 @@
3530
</StackPanel>
3631
<Separator/>
3732
<StackPanel>
38-
<CheckBox Content="Allow network access for tools (MCP, web fetches)" IsChecked="{Binding AllowNetworkAccess, Mode=TwoWay}"/>
39-
<TextBlock Margin="0,4,0,0" Foreground="#888" FontSize="12" Text="Enables outbound network for tool calls (e.g., MCP servers) by setting sandbox_policy.network_access=true on turns." MaxWidth="550" TextWrapping="Wrap"/>
40-
</StackPanel>
41-
<Separator/>
42-
<StackPanel>
43-
<TextBlock Text="MCP Results" FontWeight="SemiBold"/>
44-
<CheckBox Content="Show MCP results in log" IsChecked="{Binding ShowMcpResultsInLog, Mode=TwoWay}"/>
45-
<CheckBox Content="Only show when not editing (auto)" IsChecked="{Binding ShowMcpResultsOnlyWhenNoEdits, Mode=TwoWay}"/>
46-
<TextBlock Margin="0,4,0,0" Foreground="#888" FontSize="12" Text="When enabled, the app surfaces top results (titles + URLs) for search-like tools. During code-editing turns, it suppresses unless disabled." MaxWidth="550" TextWrapping="Wrap"/>
33+
<CheckBox Content="Enable MCP support (load servers from config)" IsChecked="{Binding McpEnabled, Mode=TwoWay}"/>
34+
<TextBlock Margin="0,4,0,6" Foreground="#888" FontSize="12" Text="Loads MCP servers from mcp_servers.json in your app data folder and passes them directly to Codex." MaxWidth="550" TextWrapping="Wrap"/>
35+
<StackPanel IsEnabled="{Binding McpEnabled}">
36+
<CheckBox Content="Allow network access for tools (MCP, web fetches)" IsChecked="{Binding AllowNetworkAccess, Mode=TwoWay}"/>
37+
<TextBlock Margin="0,4,0,6" Foreground="#888" FontSize="12" Text="Enables outbound network for tool calls (e.g., MCP servers) by setting sandbox_policy.network_access=true on turns." MaxWidth="550" TextWrapping="Wrap"/>
38+
<TextBlock Text="MCP Results" FontWeight="SemiBold"/>
39+
<CheckBox Content="Show MCP results in log" IsChecked="{Binding ShowMcpResultsInLog, Mode=TwoWay}"/>
40+
<CheckBox Content="Only show when not editing (auto)" IsChecked="{Binding ShowMcpResultsOnlyWhenNoEdits, Mode=TwoWay}"/>
41+
<TextBlock Margin="0,4,0,0" Foreground="#888" FontSize="12" Text="When enabled, the app surfaces top results (titles + URLs) for search-like tools. During code-editing turns, it suppresses unless disabled." MaxWidth="550" TextWrapping="Wrap"/>
42+
</StackPanel>
4743
</StackPanel>
4844
</StackPanel>
4945
</ScrollViewer>

0 commit comments

Comments
 (0)