chore(general): 更新项目配置文件
- 添加必要的配置项 - 优化现有设置 - 确保环境兼容性
This commit is contained in:
15
lzwcai_mcpskills_template/main.py
Normal file
15
lzwcai_mcpskills_template/main.py
Normal 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()
|
||||
Reference in New Issue
Block a user