Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるSKILL.md
readonly| 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.