Série: Humanoid
python
43 linhas
· Atualizado 2026-03-12
skill.py
Humanoid/May_12/RoboOS/slaver/demo_robot_local/skill.py
from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP("robots")
@mcp.tool()
async def navigate_to_target(target: str) -> tuple[str, dict]:
"""Navigate to target, do not call when Navigation to target has been successfully performed.
Args:
target: String, Represents the navigation destination.
"""
result = f"Navigation to {target} has been successfully performed."
print(result)
return result, {"position": f"{target}"}
@mcp.tool()
async def grasp_object(object: str) -> tuple[str, dict]:
"""Pick up the object, do not call when object has been successfully grasped.
Args:
object: String, Represents which to grasp.
"""
result = f"{object} has been successfully grasped."
print(result)
return result, {"grasped": f"{object}"}
@mcp.tool()
async def place_to_affordance(affordance: str, object: str = None) -> tuple[str, dict]:
"""Place the grasped object in affordance, do not call when object has been successfully placed on affordance."
Args:
affordance: String, Represents where the object to place.
object: String, Represents the object has been grasped.
"""
result = f"{object} has been successfully placed on {affordance}."
print(result)
return result, {"grasped": f"None"}
if __name__ == "__main__":
# Initialize and run the server
mcp.run(transport="stdio")
Artigos relacionados
Humanoid
python
Atualizado 2026-03-12
run.py
run.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/deploy/run.py).
Ler artigo →
Humanoid
python
Atualizado 2026-03-12
utils.py
utils.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/deploy/utils.py).
Ler artigo →
Humanoid
python
Atualizado 2026-03-12
agent.py
agent.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/agent.py).
Ler artigo →
Humanoid
python
Atualizado 2026-03-12
planner.py
planner.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/planner.py).
Ler artigo →
Humanoid
python
Atualizado 2026-05-12
prompts.py
prompts.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/agents/prompts.py).
Ler artigo →
Humanoid
python
Atualizado 2026-05-12
run.py
run.py — python source code from the Humanoid learning materials (Humanoid/May_12/RoboOS/master/run.py).
Ler artigo →