Humanlearning's picture
feat: add MCPClient for managing connections to MCP servers and modify app launch parameters.
06e607f
raw
history blame contribute delete
238 Bytes
import sys
import os
# Add src to path so we can import the package
sys.path.append(os.path.join(os.path.dirname(__file__), "src"))
from credentialwatch_agent.main import demo
if __name__ == "__main__":
demo.launch(ssr_mode=False)