Skip to content

Commit 315b1e9

Browse files
authored
docs: fix documentation of rmcp client flag (#7665)
## Summary - Updated the rmcp client flag's documentation in config.md file - changed it from `experimental_use_rmcp_client` to `rmcp_client`
1 parent 8209080 commit 315b1e9

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

docs/config.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -464,10 +464,11 @@ http_headers = { "HEADER_NAME" = "HEADER_VALUE" }
464464
env_http_headers = { "HEADER_NAME" = "ENV_VAR" }
465465
```
466466

467-
Streamable HTTP connections always use the experimental Rust MCP client under the hood, so expect occasional rough edges. OAuth login flows are gated on the `experimental_use_rmcp_client = true` flag:
467+
Streamable HTTP connections always use the experimental Rust MCP client under the hood, so expect occasional rough edges. OAuth login flows are gated on the `rmcp_client = true` flag:
468468

469469
```toml
470-
experimental_use_rmcp_client = true
470+
[features]
471+
rmcp_client = true
471472
```
472473

473474
After enabling it, run `codex mcp login <server-name>` when the server supports OAuth.
@@ -489,17 +490,6 @@ disabled_tools = ["search"]
489490

490491
When both `enabled_tools` and `disabled_tools` are specified, Codex first restricts the server to the allow-list and then removes any tools that appear in the deny-list.
491492

492-
#### Experimental RMCP client
493-
494-
This flag enables OAuth support for streamable HTTP servers.
495-
496-
```toml
497-
experimental_use_rmcp_client = true
498-
499-
[mcp_servers.server_name]
500-
501-
```
502-
503493
#### MCP CLI commands
504494

505495
```shell

0 commit comments

Comments
 (0)