We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kentra/KentraBOT-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
robot.py•523 B
from abc import ABC, abstractmethod
class Robot(ABC):
"""Abstract Base Class for Robot Hardware Abstraction Layer."""
@abstractmethod
async def set_motors(self, left_speed: float, right_speed: float) -> None:
"""
Set motor speeds.
:param left_speed: Speed for left motor (-1.0 to 1.0)
:param right_speed: Speed for right motor (-1.0 to 1.0)
"""
pass
@abstractmethod
async def stop(self) -> None:
"""Stop all motors immediately."""
pass