#!/usr/bin/env python3 """Direct runner for Portainer MCP server without dev dependencies.""" import sys import os # Add src to path sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src')) # Import and run the server from portainer_core.server import main_sync if __name__ == "__main__": main_sync()