#!/usr/bin/env python3
"""
Main entry point for the ESP-IDF MCP Server
"""
# Import the FastMCP instance and tools
from core.config import mcp
import tools.esp_idf_tools
import tools.serial_tools
if __name__ == "__main__":
# 使用streamable-http传输在本地8080端口运行
mcp.run(transport="streamable-http", host="127.0.0.1", port=8080)