We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandraschi/robotics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
miio_discover.py•414 B
from miio import Discovery
import logging
logging.basicConfig(level=logging.INFO)
print("Discovering devices...")
devices = Discovery.discover_mdns()
print(f"Found {len(devices)} devices via mDNS")
for dev in devices:
print(dev)
print("\nDiscovering via handshake...")
devices_hs = Discovery.discover_handshake()
print(f"Found {len(devices_hs)} devices via Handshake")
for dev in devices_hs:
print(dev)