|
18 | 18 | </StackPanel> |
19 | 19 | <CheckBox Content="Verbose logging (show suppressed content)" IsChecked="{Binding VerboseLoggingEnabled, Mode=TwoWay}"/> |
20 | 20 | <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/> |
26 | 21 | <StackPanel> |
27 | 22 | <CheckBox Content="Use API Key for Codex CLI" IsChecked="{Binding UseApiKey, Mode=TwoWay}"/> |
28 | 23 | <TextBlock Text="API Key" Margin="0,8,0,4"/> |
|
35 | 30 | </StackPanel> |
36 | 31 | <Separator/> |
37 | 32 | <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> |
47 | 43 | </StackPanel> |
48 | 44 | </StackPanel> |
49 | 45 | </ScrollViewer> |
|
0 commit comments