Skip to content

Commit 710a567

Browse files
committed
merge with recent branch
1 parent d1bbbac commit 710a567

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/mcp/shared/auth.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,20 @@ class OAuthMetadata(BaseModel):
122122
registration_endpoint: AnyHttpUrl | None = None
123123
scopes_supported: list[str] | None = None
124124
response_types_supported: list[str] = ["code"]
125-
response_modes_supported: list[Literal["query", "fragment", "form_post"]] | None = None
125+
response_modes_supported: (
126+
list[
127+
Literal[
128+
"query",
129+
"fragment",
130+
"form_post",
131+
"query.jwt",
132+
"fragment.jwt",
133+
"form_post.jwt",
134+
"jwt",
135+
]
136+
]
137+
| None
138+
) = None
126139
grant_types_supported: (
127140
list[
128141
Literal[

0 commit comments

Comments
 (0)