Spaces:
Sleeping
Sleeping
apple muncy
commited on
Commit
·
ea28fc4
1
Parent(s):
8767393
mcp 1.12.2
Browse filesSigned-off-by: apple muncy <apple@dell-deb-12-5.local>
- auth_server.py +4 -1
- requirements.txt +1 -1
auth_server.py
CHANGED
|
@@ -51,7 +51,10 @@ class SimpleAuthProvider(SimpleOAuthProvider):
|
|
| 51 |
|
| 52 |
def __init__(self, auth_settings: SimpleAuthSettings, auth_callback_path: str, server_url: str):
|
| 53 |
super().__init__(auth_settings, auth_callback_path, server_url)
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
def create_authorization_server(server_settings: AuthServerSettings, auth_settings: SimpleAuthSettings) -> Starlette:
|
| 57 |
"""Create the Authorization Server application."""
|
|
|
|
| 51 |
|
| 52 |
def __init__(self, auth_settings: SimpleAuthSettings, auth_callback_path: str, server_url: str):
|
| 53 |
super().__init__(auth_settings, auth_callback_path, server_url)
|
| 54 |
+
print(f"Init SimpleAuthProvider:")
|
| 55 |
+
print(f"auth_callback_path:{auth_callback_path}")
|
| 56 |
+
print(f"server_url: {server_url}")
|
| 57 |
+
print(f"SimpleAuthSettines: {SimpleAuthSettings}")
|
| 58 |
|
| 59 |
def create_authorization_server(server_settings: AuthServerSettings, auth_settings: SimpleAuthSettings) -> Starlette:
|
| 60 |
"""Create the Authorization Server application."""
|
requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
mcp==1.
|
|
|
|
| 1 |
+
mcp==1.12.2
|