Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ use std::path::PathBuf;

const SUPPORTED_EXPERIMENTAL_FEATURE_ENABLEMENT: &[&str] = &[
"auth_elicitation",
"mcp_2026_07_28",
"memories",
"mentions_v2",
"remote_control",
Expand Down
6 changes: 6 additions & 0 deletions codex-rs/core/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,9 @@
"local_thread_store_compression": {
"type": "boolean"
},
"mcp_2026_07_28": {
"type": "boolean"
},
"memories": {
"type": "boolean"
},
Expand Down Expand Up @@ -5039,6 +5042,9 @@
"local_thread_store_compression": {
"type": "boolean"
},
"mcp_2026_07_28": {
"type": "boolean"
},
"memories": {
"type": "boolean"
},
Expand Down
8 changes: 8 additions & 0 deletions codex-rs/features/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ pub enum Feature {
Apps,
/// Enable MCP apps.
EnableMcpApps,
/// Enable MCP protocol version 2026-07-28 support.
Mcp20260728,
/// Removed compatibility flag for the legacy Apps MCP path override.
AppsMcpPathOverride,
/// Removed compatibility flag retained as a no-op now that tool_search is always enabled.
Expand Down Expand Up @@ -1081,6 +1083,12 @@ pub const FEATURES: &[FeatureSpec] = &[
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
id: Feature::Mcp20260728,
key: "mcp_2026_07_28",
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
id: Feature::AppsMcpPathOverride,
key: "apps_mcp_path_override",
Expand Down
Loading