This commit is contained in:
tao.chen
2026-06-24 11:19:17 +08:00
commit b56d7c80dd
9 changed files with 1075 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# coding=utf-8
"""
@Time :2026/6/24
@Author :tao.chen
"""
from fastapi import FastAPI
from fastapi_mcp import FastApiMCP
def init_mcp_server(app: "FastAPI") -> "FastApiMCP":
return FastApiMCP(app)