We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f161149 commit 8cdac3dCopy full SHA for 8cdac3d
2 files changed
src/mcp/client/auth/__init__.py
@@ -4,4 +4,20 @@
4
Implements authorization code flow with PKCE and automatic token refresh.
5
"""
6
7
-from mcp.client.auth.oauth2 import * # noqa: F403
+from mcp.client.auth.oauth2 import (
8
+ OAuthClientProvider,
9
+ OAuthFlowError,
10
+ OAuthRegistrationError,
11
+ OAuthTokenError,
12
+ PKCEParameters,
13
+ TokenStorage,
14
+)
15
+
16
+__all__ = [
17
+ "OAuthClientProvider",
18
+ "OAuthFlowError",
19
+ "OAuthRegistrationError",
20
+ "OAuthTokenError",
21
+ "PKCEParameters",
22
+ "TokenStorage",
23
+]
src/mcp/client/auth/extensions/__init__.py
0 commit comments