Anthropic released the first public preview of the Model Hardware Standard last Thursday. The release provides a common interface definition that lets AI agents identify connected devices, read their capabilities, and send commands while respecting safety constraints built into the hardware itself. Developers working with laboratory automation, robotics testbeds, and industrial IoT setups can now point an agent at a device and receive a machine-readable description of available operations without writing device-specific glue code.
What the preview actually contains
The preview package includes a JSON schema for device capability documents, a set of REST-like endpoints for discovery and control, and a reference safety policy language. Agents query a device at a well-known endpoint to retrieve its profile, which lists supported actions, parameter ranges, and required permissions. The standard also defines a lightweight capability negotiation step so an agent can confirm that a requested operation stays within the device’s declared safe limits before execution begins.
Version 0.9 of the specification ships with support for common laboratory instruments such as spectrometers, liquid handlers, and environmental chambers. It also covers basic robotic arms through an extension that maps joint positions and gripper states to the same capability model. Anthropic has stated that additional device classes will be added based on feedback gathered during the preview period.
Why hardware needs its own agent protocol
Current AI agents excel at calling software APIs because those interfaces follow consistent patterns for authentication, error handling, and data exchange. Physical devices, by contrast, expose wildly different serial protocols, proprietary SDKs, and safety interlocks. Each new robot or instrument typically requires its own driver layer and custom prompt engineering to keep the agent from issuing unsafe commands. The Model Hardware Standard collapses that per-device work into a single discovery and policy layer.
The approach resembles the evolution of web APIs in the early 2010s. Once services adopted common patterns for pagination, rate limiting, and OAuth, agents could interact with hundreds of endpoints using the same reasoning code. Hardware has lacked an equivalent convergence point until now.
Safety model at the core
Every capability document must declare maximum operating ranges and required confirmation steps. An agent cannot bypass these declarations; the device firmware or a local gateway enforces them. The standard also introduces an optional “supervisor” mode in which a human operator receives a concise summary of the planned action and must approve it before the command reaches the hardware.
This design choice directly addresses concerns raised by researchers working with high-risk equipment. Rather than relying solely on the language model to avoid dangerous actions, the protocol pushes enforcement to the device boundary where physical limits can be hard-coded.
Who can participate in the preview
Access is currently limited to organizations that already maintain compatible hardware testbeds. Interested teams submit a short application describing their equipment and intended use case. Approved participants receive API tokens and a sandbox environment that mirrors production device behavior without risking actual hardware.
Anthropic has published a reference gateway implementation in Python that translates the standard calls into vendor-specific commands for several popular lab instruments. The gateway runs locally and exposes the Model Hardware Standard endpoints over a secure WebSocket connection.
Early reactions from the agent community
Developers who have experimented with the preview note that agent planning loops become simpler once device capabilities arrive in a uniform format. Instead of maintaining separate tool definitions for each robot, teams can generate the tool schema automatically from the device profile. This reduces prompt length and lowers the chance that an agent hallucinates an unsupported command.
Some robotics labs have begun mapping their existing ROS2 nodes to the new standard. The mapping layer converts ROS2 service calls into the Model Hardware Standard action format, allowing the same agent code to drive both simulated and physical systems.
Relationship to existing agent frameworks
The Model Hardware Standard does not replace protocols such as Anthropic’s own computer-use API or the Model Context Protocol. It sits one layer below them, supplying the hardware-specific vocabulary those higher-level protocols can reference. An agent using the computer-use API can therefore treat a physical spectrometer the same way it treats a cloud database once both expose compatible capability documents.
Integration work is already underway with several open-source agent runtimes. The maintainers of those projects are adding optional drivers that load device profiles at startup and register the corresponding actions in the agent’s tool registry.
Next steps and open questions
Anthropic plans to move the specification to version 1.0 once the preview feedback window closes in early October. The company has invited hardware vendors to contribute additional capability profiles so that new instruments can be supported out of the box.
Remaining questions include how the standard will handle devices that require real-time streaming of sensor data and how multi-device coordination will be expressed when an agent must orchestrate several instruments in a single workflow. The preview documentation flags both areas as active topics for discussion.
Adoption will ultimately depend on whether major instrument makers embed the standard in their firmware or continue to rely on third-party gateways. If the former occurs, the Model Hardware Standard could become the default interface for agent-driven laboratories within two to three years.
Broader implications for IoT development
Beyond the lab, the same pattern could apply to building automation, agricultural robotics, and small-scale manufacturing cells. Any environment where agents need to issue physical commands without bespoke integration work stands to benefit. The standard’s emphasis on declared capabilities and enforced safety limits also aligns with regulatory expectations in sectors that require audit trails for automated actions.
Software engineers who have spent the past year building agent tooling for APIs now have a clear next frontier: extending those same reasoning patterns to the physical world through a single, vendor-neutral interface. The August 27 preview marks the first concrete step in that direction.

