Skip to main content
Glama
joeynyc

microduck-mcp

by joeynyc

microduck-mcp πŸ¦† β€” by MicroduckHub

The universal agent interface for the Pollen Robotics Microduck.

An MCP (Model Context Protocol) server that lets any AI agent β€” Claude, ChatGPT, Cursor, Gemini CLI, smolagents β€” drive a Microduck: walk it, sit it, make it pick things up, read its health, and stop it.

Part of MicroduckHub.

Works today with no robot: a mock transport for instant canned state, and a simulator β€” CPU MuJoCo running Pollen's official pretrained ONNX policies β€” so agents can walk, sit, kick and look at a physically simulated duck before yours ships.

Quick start

npm install
npm run build

# Mock duck (default β€” no hardware needed)
npm start

# Simulated duck: CPU MuJoCo + official ONNX policies (one-time setup ~1 min)
sim/setup.sh            # needs uv (https://docs.astral.sh/uv/); vendors ~30 MB of assets
DUCK_TRANSPORT=sim npm start

# Real duck over ssh
DUCK_TRANSPORT=ssh DUCK_HOST=duck@microduck.local npm start

# On the robot itself
DUCK_TRANSPORT=unix npm start

Try it without a client

npm test                         # safety layer, mock, sim-transport contract tests
npm run demo                     # health β†’ walk β†’ monitor β†’ camera β†’ quack β†’ stop (mock)
DUCK_TRANSPORT=sim npm run demo  # same, in MuJoCo; frames land in demo-out/

Claude Desktop / Claude Code config

{
  "mcpServers": {
    "microduck": {
      "command": "node",
      "args": ["/path/to/microduck-mcp/dist/index.js"],
      "env": { "DUCK_TRANSPORT": "mock" }
    }
  }
}

If Claude Desktop runs on Windows and this repo lives in WSL, use "command": "wsl.exe", "args": ["-e", "/abs/path/to/node", "/home/you/microduck-mcp/dist/index.js"]. Or for Claude Code: claude mcp add microduck -e DUCK_TRANSPORT=mock -- node /path/to/dist/index.js.

Related MCP server: unitree-sdk2-mcp

Tools

Tool

What it does

Guarded?

duck_health

Battery, temps, loop rate, loaded policy

read-only

duck_version

Robot name, serial, uptime

read-only

duck_updates

Installed releases

read-only

duck_monitor

One-shot state: joints, gravity, gyro, odometry, current intent

read-only

duck_camera

PNG frame: head camera or follow/front/side/top view (sim today)

read-only

duck_policy_list

Which ONNX policy fills each of the seven slots, with origin (official / community / local) and version

read-only

duck_policy_load

Put an HF repo, library entry or on-board .onnx in one slot; manifest pre-check can only refuse

gated like motion

duck_policy_reset

Remove the override on one slot (or all seven) β€” the one-word undo for a load

gated like motion

duck_walk

Velocity intent (vx/vy/wz) for duration_s, then auto-stops

clamped, battery-gated, rate-limited

duck_behavior

sit / stand / getup / pickup / kick / roulade / quack

gated (quack is free; getup allowed while fallen)

duck_stop

Zero all motion, immediately

never gated

Safety

robotd on the robot holds the only write handle to the motor bus and enforces joint clamps, fall→limp, and an intent deadman. This server adds its own layer on top — velocity caps, a 15% battery floor for motion, rate limiting — because an agent-agnostic tool can't assume the calling model is careful. duck_stop is always available.

Transports

DUCK_TRANSPORT

What

Needs

mock (default)

Canned state, instant

nothing

sim

Headless CPU MuJoCo running the official alpha_*.onnx policies with robotd's control chain, in a Python sidecar (sim/duck_sim.py)

sim/setup.sh

unix

The robot's own daemons over /run/*.sock

running on the duck

ssh

The same sockets forwarded over ssh -L, then unix

a duck on the network, ssh access

All four sit behind one DuckTransport interface, so the tools β€” and the safety layer β€” are identical whether the duck is simulated or real.

Sim fidelity note: the reference MuJoCo scene under-tracks small velocity commands (verified identical to upstream's own infer_policy.py). Expect ~0.08 m/s at the 0.25 m/s cap and weak yaw. It walks, sits, stands, kicks and rolls; it just isn't a speed benchmark.

Ecosystem

  • MicroduckHub β€” DuckHub, the community policy browser this server will back once upstream's M8 model channel ships.

  • awesome-microduck β€” the curated ecosystem list.

Not an official project

Community project β€” not affiliated with, endorsed by, or sponsored by Pollen Robotics or Hugging Face. Microduck is their product; this is an independent client for it, and product names and logos belong to their respective owners.

Status

Pre-hardware. Every transport speaks upstream's published wire protocol (duck-ipc-proto, see src/transport/protocol.ts); the sim path is validated end to end, the unix/ssh paths against a fake daemon only β€” first contact with a real duck is ~Dec 2026.

Licensed under Apache-2.0 (see LICENSE); upstream robot software is Apache 2.0 too.

Available Tools

8 tools
duck_behaviorRun a behaviorA

Trigger a named built-in behavior: sit, stand, getup (power the joints and rise to the home pose after a fall β€” on hardware a human rights the duck first; in sim it is set upright in place), pickup (beak to floor, grab), kick, roulade (forward roll), quack. sit/stand are no-ops if already in that posture. Scripted moves take 0.5–3 s; call duck_monitor to see when 'busy' clears. Battery- and health-gated like walking (quack is free).

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesWhich behavior to run.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description carries the full burden, and it delivers: hardware vs sim getup differences, no-op semantics, timing ranges, busy-flag behavior, battery/health gating, and the quack exception. This is rich behavioral disclosure beyond a generic 'runs a behavior' statement.

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

Conciseness5/5

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

Two dense sentences with no filler. The core action and enum list lead, followed by exception notes and monitoring guidance. Every clause adds actionable information, and the structure is easy to parse.

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?

For a one-parameter behavior tool, this is nearly complete: it defines all behavior outcomes, timing, and follow-up monitoring. The only gap is that it doesn't describe the tool's own return value (e.g., immediate acknowledgment vs completion status), which matters since there is no output schema.

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?

Although schema coverage is 100%, the schema only says 'Which behavior to run.' The description adds critical per-enum semantics for getup, pickup, sit/stand no-ops, and the fact that quack is free. This substantially enriches parameter understanding beyond the enum names alone.

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 opens with a specific verb ('Trigger') and resource ('named built-in behavior'), then enumerates all seven behaviors. It distinguishes itself from duck_walk by saying it is battery/health-gated 'like walking' and from duck_monitor by instructing the agent to call it afterward.

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?

It gives clear operational context: sit/stand are no-ops in the same posture, scripted moves have a duration, and duck_monitor must be polled to see when 'busy' clears. It doesn't explicitly name when-not-to-use alternatives, but the behavior-vs-walk distinction is implied and the monitoring follow-up is explicit.

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

duck_cameraDuck cameraA

A still frame of what the duck sees or looks like right now, returned as a PNG image. view='head' is the robot's own head camera; 'follow' (default), 'front', 'side' and 'top' are third-person views around the robot. Read-only, never moves the robot. Available on the sim transport today; on hardware it will come from mediad's WebRTC stream (not wired yet) and the mock transport returns a placeholder.

ParametersJSON Schema
NameRequiredDescriptionDefault
viewNoWhich camera.follow
widthNo
heightNo

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden. It explicitly discloses 'Read-only, never moves the robot,' the PNG output format, what each view means, and the divergent behavior across transports (sim, hardware, mock). This goes beyond typical tool descriptions and clearly sets expectations for the agent.

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

Conciseness5/5

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

Three concise sentences that are front-loaded with the core purpose, followed by view details and then safety/availability. Every sentence carries necessary information, and there is no redundant filler or repetition of schema defaults.

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?

For a small camera tool with no output schema, the description covers the key context: return type, view semantics, safety, and transport limitations. It leaves minor gaps such as exact behavior on unsupported transports or how the placeholder looks, but nothing critical is missing for an agent to invoke it correctly.

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

Parameters3/5

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

Schema coverage is low at 33%, and the description compensates well for the `view` parameter by explaining each enum value's meaning. However, `width` and `height` receive no semantic explanation beyond the schema's numeric bounds and defaults. The tool's output as an image makes them somewhat self-explanatory, but the description still leaves those parameters underspecified.

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 returns a still frame as a PNG image, naming the resource (duck_camera) and the action. It also breaks down the view options, which distinguishes it from the sibling tool names that are all about version, health, updates, stop, monitoring, walking, and behavior.

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 on when the tool is usable ('Available on the sim transport today', hardware not wired yet, mock returns placeholder) and explicitly says it is read-only. It does not explicitly name alternatives or when not to use it, but the siblings are clearly not camera alternatives, so the guidance is sufficient without exclusions.

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

duck_healthDuck healthA

Full hardware+software health report: battery (volts and percent), control-loop rate, servo/board temperatures, loaded policy, and whether the robot considers itself healthy. Read-only and always safe to call. Call this FIRST in any session, and again before any sequence of motion commands.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It explicitly states the tool is read-only and always safe to call, and it discloses what data the report contains. This is sufficient for a non-mutating health check, though it could mention output formatting or frequency limits.

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

Conciseness5/5

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

The description is two sentences with no filler. The first sentence front-loads the core purpose and contents; the second adds essential usage guidance. Every word earns its place.

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

Completeness5/5

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

For a zero-parameter, read-only tool with no output schema, the description is complete: it lists expected report contents, declares safety, and tells exactly when to call it. An agent has everything needed to select and invoke this tool correctly.

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

Parameters4/5

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

The tool has zero parameters, so the baseline is 4. The description does not need to explain parameter meaning because there is nothing to pass. The schema and context signals fully cover this dimension.

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 identifies a specific resource (full hardware+software health report) and enumerates its contents: battery, control-loop rate, temperatures, loaded policy, and self-health status. This makes the tool's purpose immediately distinguishable from siblings like duck_version or duck_walk without needing to inspect schemas.

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 gives explicit timing guidance: call FIRST in any session and again before motion sequences. It also notes the tool is always safe to call. It does not reference sibling alternatives or exclusion conditions, but the use context is clear enough for an agent.

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

duck_monitorDuck state sampleA

One robot.state frame: which policy is driving, the velocity requested vs applied (and what limited it), joints, gravity in the body frame (β‰ˆ[0,0,-1] when upright β€” a large X or Y component means it has fallen), odometry, and the safety flags (fallen, limp, busy). Read-only and always safe to call. Use it to confirm a walk actually moved the robot, or to check posture before/after a behavior. For battery and temps use duck_health.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries full burden and does well: it states 'Read-only and always safe to call', clarifies the gravity vector interpretation (including fall detection), and explains the safety flags. This gives an agent a clear picture of the tool's behavior and output semantics.

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

Conciseness5/5

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

The description is dense but every clause earns its place: it front-loads the core 'one frame' concept, lists the important fields, adds interpretation guidance, and closes with usage direction and a sibling reference. No filler words or redundant phrasing.

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

Completeness5/5

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

For a tool with no parameters and no output schema, the description must explain what the tool returns and when to use it. It does both thoroughly, including interpretation of potentially ambiguous fields (gravity, safety flags) and a clear relationship to duck_health. Nothing essential is missing.

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

Parameters4/5

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

The input schema has zero parameters, so there is nothing to document. The description adds no parameter details because none exist, matching the baseline of 4 for parameterless tools.

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 that this tool returns one robot.state frame and enumerates its contents (policy, velocity requested vs applied, joints, gravity, odometry, safety flags). It differentiates itself from duck_health by explicitly redirecting battery/temperature queries, making its purpose unambiguous.

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

Usage Guidelines5/5

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

The description gives concrete use cases: confirming a walk moved the robot and checking posture before/after a behavior. It also explicitly names an alternative (duck_health) for a different concern, establishing when not to use this tool.

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

duck_stopSTOP the duckA

Immediately zero all motion intents. NEVER gated, never rate-limited β€” always available. Call this if anything looks wrong, if a human asks you to stop, or if you are unsure what the robot is doing.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It clearly describes the action ('zero all motion intents'), immediacy, and operational guarantees. It does not detail potential side effects or return behavior, but for a stop command the core behavioral trait is well covered.

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

Conciseness5/5

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

The description is two purposeful sentences. The critical action is front-loaded, followed by availability guarantees and explicit when-to-call guidance. Every word earns its place.

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

Completeness5/5

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

For a parameterless emergency-stop tool with no output schema, the description fully covers what it does, when to invoke it, and its availability guarantees. No additional context is needed for an agent to call this correctly.

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

Parameters4/5

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

The tool has zero parameters, so the schema already fully covers parameter semantics. The description adds no parameter-specific details, which is appropriate since there are none. Baseline 4 applies.

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 states a specific action and resource: 'Immediately zero all motion intents.' This clearly differentiates it from siblings like duck_walk or duck_behavior by establishing duck_stop as the inverse/emergency operation.

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

Usage Guidelines5/5

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

Explicit usage conditions are provided: 'if anything looks wrong, if a human asks you to stop, or if you are unsure what the robot is doing.' It also sets availability expectations ('NEVER gated, never rate-limited'), which tells the agent this tool is always safe to call in emergencies.

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

duck_updatesList installed releasesA

Installed daemon releases and which one is active/golden. Read-only. (Installing/rolling back is deliberately NOT exposed as a tool yet β€” see CLAUDE.md 'Deliberately excluded'.)

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It explicitly discloses read-only behavior and clarifies that install/rollback is deliberately unavailable, which is valuable transparency. It does not mention rate limits or authentication, but for a simple read-only list tool these are less critical.

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

Conciseness5/5

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

Two tightly written sentences with no fluff. The main purpose is front-loaded, followed by the read-only safety note and a pointer to the excluded functionality. Every sentence earns its place.

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

Completeness5/5

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

For a zero-parameter tool with no output schema, the description fully explains what the tool does and what it returns (installed releases and the active/golden one). The read-only and exclusion notes round out the context. Nothing essential is missing.

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

Parameters4/5

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

The tool has zero parameters and the schema coverage is trivially 100%. According to the rubric, 0 params earns a baseline of 4. There is no parameter meaning to add.

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 uses a specific verb ('List') and resource ('installed daemon releases'), and adds the distinct detail of identifying which release is active/golden. This clearly distinguishes it from the sibling tools, none of which mention release listing.

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

Usage Guidelines3/5

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

The read-only note and the explicit statement that installing/rolling back is not exposed give some usage context, but there is no explicit guidance on when to prefer this tool over alternatives like duck_version or duck_health. Usage is implied rather than spelled out.

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

duck_versionDuck identity and uptimeA

The robot's name, serial and uptime (configd system.info). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly says 'Read-only,' which is an important behavioral trait since it assures the agent the tool has no side effects, and it identifies the data source as configd system.info. It could additionally mention failure behavior or output format, but for a simple read-only identity tool this is largely sufficient.

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

Conciseness5/5

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

The description is a single front-loaded sentence that immediately identifies what the tool provides, followed by the read-only qualifier. Every word earns its place and there is no fluff or redundancy.

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?

For a no-parameter, read-only information tool, the description covers the essential content: what data is returned and that it is safe. The only minor limitation is that it does not describe output format or units for uptime, but the low complexity makes that gap acceptable.

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

Parameters4/5

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

The tool has zero parameters and the schema already covers 100% of the (nonexistent) parameter space, so the baseline of 4 applies. The description does not need to add parameter details, and none are missing.

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

Purpose4/5

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

The description clearly states the tool returns the robot's name, serial, and uptime, with the underlying source configd system.info. This is specific enough to distinguish it from siblings like duck_health and duck_updates, though it lacks an explicit verb such as 'returns' or 'gets' and does not directly name alternatives.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus its siblings. It merely says 'Read-only,' which implies safe usage, but it does not explain when to choose duck_versus over duck_health, duck_updates, or other sibling tools.

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

duck_walkWalk the duckA

Send a velocity intent: vx forward m/s, vy sideways m/s, wz yaw rad/s. Values are clamped to Β±0.25 m/s linear and Β±1 rad/s yaw. Walks for duration_s (default 2 s, max 10 s) then stops; the call returns when the walk is over. duck_stop interrupts it at any time, and robotd's own deadman stops the duck if this server dies mid-walk β€” it does not run away. Call duck_monitor afterwards to see how far it got. Refused below 15% battery or when fallen.

ParametersJSON Schema
NameRequiredDescriptionDefault
vxYesForward velocity, m/s. Negative = backward.
vyNoSideways velocity, m/s.
wzNoYaw rate, rad/s. Positive = left.
duration_sNoSeconds to keep walking before the intent expires.

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and delivers: it discloses value clamping (Β±0.25 m/s linear, Β±1 rad/s yaw), the fact that the call blocks until the walk finishes, the deadman safety mechanism that stops the duck if the server dies, and the battery/fallen refusal conditions. This is rich behavioral context well beyond what a schema could convey.

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

Conciseness5/5

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

Every sentence in the description earns its place: the intent definition, the safety clamps, the timing behavior, the interruption and deadman guarantees, the follow-up monitor suggestion, and the refusal conditions. It is compact, well-ordered, and front-loads the core action before secondary details, with no redundant phrasing.

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

Completeness5/5

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

For a robot-motion tool with no output schema and no annotations, this description is remarkably complete: it explains blocking semantics, failure/refusal conditions, safety fallbacks, and where to get results afterward. An agent has everything needed to invoke it correctly and know what to expect, making the description self-sufficient.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3. The description adds value by stating the physical clamping limits for vx/vy/wz, which are absent from the schema itself, and by confirming the duration default and maximum in plain language. It doesn't add per-parameter syntax details, but the clamping information meaningfully supplements the schema, so 4 is appropriate.

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 opens with 'Send a velocity intent: vx forward m/s, vy sideways m/s, wz yaw rad/s' β€” a specific verb ('send'), a clear resource (the duck), and the exact axes of motion. It distinguishes itself from sibling tools by explicitly pointing to duck_stop for interrupting and duck_monitor for checking progress, so an agent can tell at a glance what this tool uniquely does.

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

Usage Guidelines5/5

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

The description gives explicit usage conditions, including when the tool is refused ('below 15% battery or when fallen'), the default and maximum duration, and direct guidance on alternatives: 'duck_stop interrupts it at any time' and 'Call duck_monitor afterwards to see how far it got.' This is clear when-to-use and when-not-to-use guidance that routes the agent to the correct sibling.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 8 tool updatesv0.1.0
    • First observedduck_behavior
    • First observedduck_camera
    • First observedduck_health
    • First observedduck_monitor
    • First observedduck_stop
    • First observedduck_updates
    • First observedduck_version
    • First observedduck_walk

TDQS

A4.3/5.0

Scored across 8 tools

Disambiguation4/5

The status tools (version, health, updates, monitor) overlap somewhat in being read-only system queries, but their descriptions clearly partition them into identity, health, software releases, and live robot state. Motion tools (stop, walk, behavior) and camera are unambiguous.

Naming Consistency4/5

All tools share a consistent duck_ prefix and the names are short, readable, and predictable. The mix of noun-like names (duck_camera, duck_health) and imperative verbs (duck_stop, duck_walk) is a minor deviation rather than a chaotic convention.

Tool Count5/5

Eight tools is well-scoped for a robot observation and control server: four read-only status/observation tools, three motion/behavior tools, and one emergency stop. Each tool has a clear purpose and none feel redundant.

Completeness5/5

The tool set covers the full intended workflow: inspect health and state, get a visual feed, command locomotion and behaviors, and stop in an emergency. The deliberate exclusion of update installation/rollback is documented and does not leave an operational gap for normal robot use.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for controlling Unitree robots via DDS protocol, supporting G1, Go2, H1, H2, B2, A2, R1 and more. Enables LLM agents to command robots with high-level actions and safety guards.
    4
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables driving Omniverse Kit apps (Isaac Sim, Isaac Lab) over MCP, allowing agents to control simulations, run Python, and call namespace-scoped tools via a single bridge.
    1
    1
    MIT