add modelstudio_demos package with 2 demos (#76)

This commit is contained in:
Attan
2026-01-04 17:46:28 +08:00
committed by GitHub
parent f32ef5e059
commit 80421039a0
22 changed files with 2422 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# ==================== Application Configuration ====================
APP_NAME: "MCP Server Starter"
DEBUG: false
# ==================== Server Configuration ====================
# Use 0.0.0.0 for cloud deployment; 127.0.0.1 for local development
FC_START_HOST: "0.0.0.0"
HOST: "127.0.0.1"
PORT: 8080
RELOAD: true
# ==================== MCP Configuration ====================
# MCP Server settings
MCP_SERVER_NAME: "my-mcp-server"
MCP_SERVER_VERSION: "1.0.0"
# ==================== Logging Configuration ====================
LOG_LEVEL: "INFO"
# ==================== Packaging Configuration ====================
# Settings for build and distribution
SETUP_PACKAGE_NAME: "deploy_starter"
SETUP_MODULE_NAME: "main"
SETUP_FUNCTION_NAME: "run_app"
SETUP_COMMAND_NAME: "mcp-server-starter"
SETUP_NAME: "mcp-server-starter"
SETUP_VERSION: "0.1.0"
SETUP_DESCRIPTION: "FastMCP Server Starter - template for fast MCP Server development"
SETUP_LONG_DESCRIPTION: "MCP Server starter based on FastMCP framework, supports local run and cloud deployment"
# ==================== Observability Configuration ====================
TELEMETRY_ENABLE: TRUE
# ==================== Cloud Deployment Configuration ====================
# Alibaba Cloud Function Compute (FC) deployment settings
FC_RUN_CMD: "python3 /code/python/deploy_starter/main.py"