""" Entry point for lzwcai-mcpskills-template MCP Server 模板项目入口 """ import os if __name__ == "__main__": # 设置环境变量(根据实际需求修改) os.environ["API_KEY"] = "your-api-key" os.environ["BASE_URL"] = "http://localhost:8080" # Import and run the actual MCP server from lzwcai_mcpskills_template.main import main main()