"""Entry point for running qingflow_mcp as a module.

Default to the curated user-facing MCP surface. Split package and console
entrypoints can still start the builder server explicitly.
"""
from qingflow_mcp.server_app_user import main

if __name__ == "__main__":
    main()
