We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jasper-zsh/espidf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
app.py•353 B
#!/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)