新增 lzwcai-agile-db 技能文件,为 AI Agent 提供 AgileDB 数据库操作的场景化工作流指导。 该技能支持数据源浏览、表数据 CRUD、SQL 执行和 AI 生成表结构等功能,包含完整的工具列表和使用场景。
13 lines
506 B
Python
13 lines
506 B
Python
"""
|
|
Entry point for lzwcai-mcp-agile-db
|
|
Runs the MCP server for database management platform
|
|
"""
|
|
|
|
from lzwcai_mcp_agile_db.server import main
|
|
import os
|
|
|
|
if __name__ == "__main__":
|
|
os.environ["API_KEY"] = "Bearer eyJhbGciOiJIUzUxMiJ9.eyJ0b2tlbl90eXBlIjoiTE9HSU4iLCJsb2dpbl91c2VyX2tleSI6IjJiMDY0YzMzLTBiZWYtNDU0NC04NWY1LTRmNTFiOGMxMmI5NSJ9.Uv599TvlQvlTlwrnZGo3Tl2eLAvM0ldE9vpMI5jHxbTf4_tVSRA60rUNIV4LBiw6pt1r_xIi7aFcTRE2PeN5sg"
|
|
os.environ["backendBaseUrl"] = "https://dempdemo.lzwcai.com"
|
|
main()
|