10 lines
204 B
Python
10 lines
204 B
Python
# 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) |