""" Entry point for lzwcai-mcp-sqlexecutor Runs the MCP server for SQL query execution """ import os os.environ["databaseId"] = "19" os.environ["datasourceId"] = "19" os.environ["backendBaseUrl"] = "http://192.168.11.24:8088" if __name__ == "__main__": # Import and run the actual MCP server from lzwcai_mcpskills_analyzeWorkOrder.main import main main()