Uh oh!
There was an error while loading. Please reload this page.
auth: support well-known paths at domain root, with prefix path, and with suffix path - #459
Merged
jokemanfire merged 1 commit intoSep 30, 2025
Conversation
zhaohuabing
marked this pull request as draft
September 28, 2025 09:02
zhaohuabingforce-pushed
the
fix-well-known-oauth-paths
branch
from
September 28, 2025 09:35
47a435f to
cc1447cComparezhaohuabing
marked this pull request as ready for review
September 29, 2025 02:05
zhaohuabingforce-pushed
the
fix-well-known-oauth-paths
branch
from
September 29, 2025 02:53
cc1447c to
82856a6CompareSigned-off-by: Huabing Zhao <zhaohuabing@gmail.com>
zhaohuabingforce-pushed
the
fix-well-known-oauth-paths
branch
from
September 29, 2025 03:26
82856a6 to
2356ffaCompareUh oh!
There was an error while loading. Please reload this page.
Merged
gpeal added a commit
to openai/codex
that referenced
this pull request
Oct 3, 2025
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
thomast8 pushed a commit
to thomast8/codex
that referenced
this pull request
Oct 5, 2025
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
willy3087 pushed a commit
to nextlw/elai_codex
that referenced
this pull request
Nov 14, 2025
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
takumi-earth pushed a commit
to earthlings-dev/rmcp
that referenced
this pull request
Jan 27, 2026
…textprotocol#459) Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
monkeycode-aiBot
pushed a commit
to agogo233/Ecode
that referenced
this pull request
Jun 8, 2026
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
AIALRA-0 pushed a commit
to AIALRA-0/codex-turn-engine
that referenced
this pull request
Jun 10, 2026
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
wangjiecloud pushed a commit
to wangjiecloud/codex
that referenced
this pull request
Jun 27, 2026
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
shafqatevo pushed a commit
to alo-labs/kay
that referenced
this pull request
Aug 7, 2026
This picks up modelcontextprotocol/rust-sdk#459 which is required for proper well-known metadata discovery for some MCPs such as Figma.
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 freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
According to the RFC 8414, if the issuer identifier value contains a path component, the well-known URI must include that path as a suffix.
For example, if the issuer identifier is
https://example.com/issuer1, then the OAuth 2.0 Authorization Server Metadata URL should be:In practice, however, some implementations diverge from the spec and either:
This PR updates the agent to try all three variants in the following order, improving interoperability across different authorization server implementations:
Implements: #403
Motivation and Context
How Has This Been Tested?
Breaking Changes
Types of changes
Checklist
Additional context
Caveat: I'm new to Rust development. If this PR is missing something or doesn't follow best practices, please let me know. I'm happy to make any updates.