Commit
·
c9dad0c
1
Parent(s):
f30acce
inital front end
Browse files
check.py
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
from server import mcp
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
from server import mcp
|
| 2 |
+
app = mcp.sse_app()
|
| 3 |
+
print(f"Type of app: {type(app)}")
|
| 4 |
+
print(f"Has routes: {hasattr(app, 'routes')}")
|
| 5 |
+
|
| 6 |
+
|