We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceb1e19 commit 3bf695cCopy full SHA for 3bf695c
2 files changed
src/mcp/server/auth/handlers/token.py
@@ -189,7 +189,7 @@ async def handle(self, request: Request):
189
return self.response(
190
TokenErrorResponse(
191
error="invalid_request",
192
- error_description=("redirect_uri did not match the one " "used when creating auth code"),
+ error_description=("redirect_uri did not match the one used when creating auth code"),
193
)
194
195
src/mcp/server/auth/provider.py
@@ -250,7 +250,7 @@ async def exchange_refresh_token(
250
...
251
252
async def exchange_client_credentials(self, client: OAuthClientInformationFull, scopes: list[str]) -> OAuthToken:
253
- """Exchange client credentials for an access token."""
+ """Exchange client credentials for an MCP access token."""
254
255
256
async def exchange_token(
0 commit comments