LeoWalker's picture
fix: Improve MCP server entry point and environment handling
dd0e719
raw
history blame contribute delete
136 Bytes
"""Main entry point for the FoodWise MCP server when run as a module."""
from .main import mcp
if __name__ == "__main__":
mcp.run()