Dhanushsaireddy144 commited on
Commit
c9dad0c
·
1 Parent(s): f30acce

inital front end

Browse files
Files changed (1) hide show
  1. check.py +5 -2
check.py CHANGED
@@ -1,3 +1,6 @@
1
  from server import mcp
2
- with open("api_dump.txt", "w") as f:
3
- f.write(str(dir(mcp)))
 
 
 
 
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
+