[MCP] Allow specifying custom headers with streamable http servers#5241
Merged
[MCP] Allow specifying custom headers with streamable http servers#5241
Conversation
bolinfest
approved these changes
Oct 16, 2025
|
|
||
| let config_path = codex_home.path().join(CONFIG_TOML_FILE); | ||
| let serialized = std::fs::read_to_string(&config_path)?; | ||
| assert_eq!( |
Contributor
|
Please add this on 0.47 version c: I'm tired of using proxies to connect because not custom headers are allowed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds two new config fields to streamable http mcp servers:
http_headers: a map of key to valueenv_http_headersa map of key to env var which will be resolved at request timeAll headers will be passed to all MCP requests to that server just like authorization headers.
There is a test ensuring that headers are not passed to other servers.
Fixes #5180