Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Startedmcp-tool-patterns
FastMCP tool patterns for tello-ai-platform
Stars0
Forks1
UpdatedMarch 12, 2026 at 16:41
SKILL.md
readonlyMenu
FastMCP tool patterns for tello-ai-platform
| name | mcp-tool-patterns |
| description | FastMCP tool patterns for tello-ai-platform |
Each tool module exports register(mcp: FastMCP) which uses @mcp.tool() internally.
Tools are organized by category: flight, sensors, expansion.
readOnlyHint=True for sensor/query toolsdestructiveHint=True for emergency_stopreadOnlyHint=False, destructiveHint=FalseTools access shared components via mcp.state:
drone = mcp.state["drone"] # DroneAdapter
queue = mcp.state["queue"] # CommandQueue
redis = mcp.state["redis"] # Redis client
telemetry = mcp.state["telemetry"] # TelemetryPublisher
Never raise exceptions in tools. Always return structured dicts.