Files
yuanzhipeng 5107fdb74c chore(general): 更新项目配置文件
- 添加必要的配置项
- 优化现有设置
- 确保环境兼容性
2026-01-28 09:35:48 +08:00

16 lines
381 B
Python

"""
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()