Kaballas commited on
Commit
c613728
·
1 Parent(s): 22f28c2
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,5 +1,8 @@
1
  from fastapi import FastAPI
2
- from fastmcp import create_server
 
 
 
3
 
4
  app = FastAPI()
5
 
 
1
  from fastapi import FastAPI
2
+ import fastmcp, inspect
3
+ print(fastmcp.__version__)
4
+ print(dir(fastmcp)[:20]) # see what is really exported
5
+
6
 
7
  app = FastAPI()
8