# coding=utf-8 """ @Time :2026/6/30 @Author :tao.chen Pluggable manifest for the spark_executor MCP service. The name and mount_path here are matched against the MCP_SERVICES env whitelist and the BUILTIN_SERVICES list in common.mcp_service. """ from common.mcp_service import McpService from spark_executor import app SERVICE: McpService = McpService( name="spark_executor", app=app, mount_path="/spark-executor-mcp", )