Skip to main content
Glama
sandraschi

Robotics MCP Server

robot_control

Control physical and virtual robots through a unified interface. Perform actions like movement, status checks, emergency stops, and synchronization between robot types.

Instructions

Unified robot control (works for both physical bot and virtual bot).

This portmanteau tool provides a unified interface for controlling both physical robots (via ROS) and virtual robots (via Unity/VRChat). The tool automatically routes commands to the appropriate handler based on robot type.

Args: robot_id: Robot identifier (e.g., "scout_01", "vbot_scout_01"). action: Operation to perform: - "get_status": Get robot status (battery, position, state) - "move": Control movement (linear/angular velocity) - "stop": Emergency stop - "return_to_dock": Return to charging dock (physical bot only) - "stand": Stand up (Unitree G1, physical bot only) - "sit": Sit down (Unitree G1, physical bot only) - "walk": Walking gait (Unitree, physical bot only) - "sync_vbot": Sync virtual bot with physical bot state linear: Linear velocity (m/s) for move action. angular: Angular velocity (rad/s) for move action. duration: Movement duration (seconds). **kwargs: Additional action-specific parameters.

Returns: Dictionary containing operation result.

Examples: Get robot status: result = await robot_control(robot_id="scout_01", action="get_status")

Move robot forward:
    result = await robot_control(
        robot_id="scout_01",
        action="move",
        linear=0.2,
        angular=0.0
    )

Stop robot:
    result = await robot_control(robot_id="scout_01", action="stop")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
robot_idYes
actionYes
linearNo
angularNo
durationNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It discloses key behavioral traits: the unified interface concept, automatic routing based on robot type, and action-specific limitations (e.g., 'physical bot only' for certain actions). However, it doesn't cover critical aspects like error handling, authentication requirements, rate limits, or safety implications of emergency stops.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (overview, args, returns, examples) and front-loaded key information. While comprehensive, some sentences could be more concise (e.g., the portmanteau explanation). The examples are helpful but add length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (5 parameters, 8 action types, dual robot support) and having an output schema (returns dictionary), the description is quite complete. It covers purpose, parameters, usage examples, and behavioral context. The main gap is lack of error/edge case handling information, which would be valuable for a control tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description provides excellent parameter semantics. It explains robot_id format with examples, enumerates and describes all action options with physical/virtual limitations, clarifies linear/angular velocity units and purposes, explains duration parameter, and mentions **kwargs for additional parameters. This fully compensates for the schema coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool provides 'unified robot control' for both physical and virtual robots, specifying it routes commands to appropriate handlers based on robot type. It distinguishes itself from siblings like robot_virtual or vbot_crud by handling both types through a single interface.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context about when to use this tool (for controlling both physical and virtual robots) and implicitly suggests alternatives by mentioning robot type routing. However, it doesn't explicitly state when NOT to use it or name specific sibling tools as alternatives for specialized cases.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

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