chore(general): 更新项目配置文件

- 添加必要的配置项
- 优化现有设置
- 确保环境兼容性
This commit is contained in:
2026-01-28 09:35:48 +08:00
parent 70d2606698
commit 5107fdb74c
14 changed files with 1141 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
"""
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()