from fastmcp import FastMCP from mcps.test.test import weather_mcp async def create_mcp_app(): main_mcp = FastMCP("MCP 主服务") await main_mcp.import_server(weather_mcp, prefix="test") return main_mcp.http_app()