Skip to main content
This site is an independent third-party technical service provider. Claude™ and Anthropic® are trademarks of Anthropic, PBC. This site has no affiliation, endorsement, or partnership with Anthropic.

Claude gets a hardware interface with MHS

Anthropic's Model Hardware Standard gives Claude a common, safety-aware interface for lab equipment. Here is what MHS does, where it worked, and how to prepare.

NewsClaudeMHSMCPAI agentsAnthropicEst. read15 min
2026.08.31 published
Claude gets a hardware interface with MHS

The AI community spent this week waiting for Claude Opus 5.1. Anthropic released something more concrete instead: a standard intended to help Claude operate physical equipment.

Rumors have claimed that Opus 5.1 is imminent, but as of August 28, 2026, Anthropic has not published an announcement, model card, model ID, price, or release date. It is still a rumor, not a model developers can safely plan around.

The confirmed release is the Model Hardware Standard (MHS) research preview.

MCP gave agents a common way to work with software tools such as repositories, databases, and business APIs. MHS addresses a harder question: how can an agent interact with liquid handlers, robotic arms, microscopes, lasers, sensors, and robots through a common interface with explicit safety boundaries?

What is confirmed—and what is not

Claim Status What it means
Opus 5.1 will launch this week Unconfirmed No official model page, ID, pricing, or date exists
Anthropic released MHS Confirmed It is currently a limited research preview
MHS is fully open source Not yet Anthropic says broader availability is planned
MHS replaces MCP No The two standards cover different layers
Claude can run labs without supervision No The published trials use expert-defined limits and oversight

The distinction matters. Opus 5.1 is a story to monitor. MHS already has a technical direction, early deployments, and ecosystem partners.

Why an Opus 5.1 rumor matters to agent builders

The reference article frames the rumored upgrade around three ideas: stronger coding, more reliable multi-step reasoning, and agents that can operate for longer periods. Anthropic has not confirmed those improvements, but the list captures three real limitations in today’s agents.

Generating one block of code is relatively easy. Preserving a project’s constraints after changing dozens of files is harder. Answering one reasoning question correctly does not guarantee that a 50-step workflow will stay on track. And the longer an agent runs, the more likely it is to lose the original objective, repeat a failed action, or choose the wrong recovery strategy.

What developers actually want from the next model generation is more practical than another benchmark win:

  • remember the original boundary at step 50;
  • diagnose a failure instead of retrying the same broken action;
  • turn successful exploration into deterministic, reusable code;
  • make predictable tradeoffs among quality, latency, and cost;
  • recognize when to stop and return a decision to a person.

Seen this way, the Opus 5.1 rumor and MHS point toward the same shift: the next phase of agent competition is not only about answering harder questions. It is about completing real work over longer periods with fewer errors.

A stronger model can solve only part of that problem. Device interfaces, hard limits, task state, audit logs, and human approval must come from the engineering system around it. That is why the confirmed MHS preview deserves more immediate attention than an unconfirmed model upgrade.

What MHS actually does

Laboratory automation is full of incompatible interfaces. A liquid handler may expose a vendor SDK, a robotic arm may use a different control protocol, and an older instrument may have no usable programmable interface at all. Connecting them often means writing and maintaining a custom adapter for every device.

MHS introduces a common description between an agent and a device:

  • the device’s current state;
  • the operations it exposes;
  • the parameters each operation accepts;
  • the limits or approvals an operation requires;
  • the results, errors, and sensor readings returned after execution.

Claude does not need to understand every proprietary protocol directly. An MHS-compatible driver can expose each device through a consistent model of state and operations.

In Anthropic’s example, a scientist describes an experiment in plain language. Claude plans the run and uses separate MHS drivers for a liquid handler, robotic arm, and microplate reader. Device state flows back to the model, creating an execute, observe, evaluate, and adjust loop.

MHS and MCP are complementary

Calling MHS “MCP for hardware” is a useful shorthand, but it is not a precise definition.

Area MCP MHS
Primary target Files, databases, repositories, SaaS, internal APIs Instruments, sensors, arms, robots, and physical devices
Core problem Discovering and invoking software tools Reading device state and performing physical actions safely
Typical risk Excess permissions, data exposure, incorrect writes Equipment damage, wasted samples, injury, irreversible actions
Main controls Identity, authorization, tool permissions, audit trails Hard limits, interlocks, emergency stops, state validation, approval

A real-world agent may eventually use both:

User goal

Claude / AI agent
   ├─ MCP: read documents, query data, submit code, write reports
   └─ MHS: read sensors, move an arm, control instruments, receive state

       Interlocks / hard limits / human approval / audit logs
User goal

Claude / AI agent
   ├─ MCP: read documents, query data, submit code, write reports
   └─ MHS: read sensors, move an arm, control instruments, receive state

       Interlocks / hard limits / human approval / audit logs

MHS does not rebuild MCP. It extends the agent stack into a domain where mistakes have physical consequences.

Four early examples

1. QuEra: recovering a quantum laser lock

Neutral-atom quantum computers depend on highly stable laser systems. When a laser loses lock, an experienced engineer may need to inspect the system and tune it back into operation.

On a dedicated testbed, QuEra allowed Claude to read state and adjust parameters inside expert-defined safety bounds. QuEra reports that the agent recovered certain lock failures in seconds rather than the minutes an expert might need, while producing conventional, inspectable control code.

That is promising, but narrow. It is a partner-reported result on a particular testbed—not proof that Claude can autonomously maintain arbitrary precision equipment.

2. Genentech: coordinating a protein assay

In a proof of concept, Claude coordinated a liquid handler, robotic arm, and plate reader for a BCA protein assay.

The important part was not simply moving a plate. The agent could use returned measurements to adjust later parameters. A conventional automation script follows a predefined sequence; an agent can make bounded decisions from changing state.

The trial also exposed a useful failure. When liquid began to foam, Claude initially treated the problem as a software bug. Researchers had to explain that it was a physical failure before the model changed its approach. Strong text and code reasoning do not automatically produce laboratory intuition.

3. HHMI Janelia: composing microscopy systems

MHS began as a collaboration between Anthropic and HHMI’s Janelia Research Campus. Microscopy setups often combine cameras, light sources, motion stages, and specialized controllers. Replacing one component can require substantial integration work.

A standard interface lets the agent reason about capabilities such as “camera,” “stage,” or “illumination,” rather than one vendor’s implementation. Researchers still define the experiment and safety envelope, but the orchestration layer becomes easier to reuse.

4. LeRobot and Raspberry Pi: beyond large laboratories

Anthropic also says Hugging Face is adding MHS support to LeRobot, while Raspberry Pi is exploring MHS across its product ecosystem.

That expands the possible scope beyond expensive scientific instruments. Cameras, sensors, educational robots, small arms, and edge devices may all become composable hardware capabilities.

The real challenge is failure handling

When a software tool fails, a request may error or a record may be written incorrectly. When a hardware action fails, it can damage equipment, destroy a sample, or hurt someone.

A production-grade hardware agent needs at least five layers of protection:

  1. Operation allowlists: the agent may invoke only reviewed capabilities.
  2. Hard parameter limits: speed, temperature, pressure, travel, and dosage must be enforced in code.
  3. Precondition checks: verify doors, payloads, device state, and workspace clearance before acting.
  4. Human approval gates: pause before costly, high-risk, or irreversible operations.
  5. Emergency stop and fail-safe behavior: devices must reach a safe state even if the model, network, or driver fails.

The model can plan. Safety cannot depend on the model remembering to be careful.

A practical preparation checklist

MHS is still a research preview, so most teams should not rebuild their hardware stack around it today. They can, however, make existing systems safer and easier for agents to use.

1. Inventory devices and interfaces

For every device, document:

  • available SDK, serial, HTTP, OPC UA, or other programmable interfaces;
  • readable state and sensor data;
  • permitted operations;
  • irreversible operations;
  • safe behavior after a timeout, network loss, or controller failure.

Hardware with no programmable interface remains difficult to connect, which Anthropic lists as a current limitation.

2. Separate observation from control

Begin with read-only access and recommendations. Expand permissions gradually:

Read-only monitoring → recommendations → simulation → testbed execution
→ human-approved execution → limited autonomous execution
Read-only monitoring → recommendations → simulation → testbed execution
→ human-approved execution → limited autonomous execution

Each step needs additional tests, logs, and recovery procedures.

3. Make constraints machine-enforceable

“Operate the arm carefully” is not a control. A constraint should be enforceable by software:

operation: move_arm
limits:
  max_speed_mm_s: 50
  allowed_z_mm: [20, 480]
  requires_door_closed: true
  requires_human_approval_when:
    payload_kg_gte: 2
timeout_seconds: 30
on_failure: emergency_stop
operation: move_arm
limits:
  max_speed_mm_s: 50
  allowed_z_mm: [20, 480]
  requires_door_closed: true
  requires_human_approval_when:
    payload_kg_gte: 2
timeout_seconds: 30
on_failure: emergency_stop

Prompts guide behavior. Hard constraints define the safety boundary.

4. Preserve the full audit chain

Record the requester, plan, model and tool calls, physical operation, parameters, returned state, and human approvals. Once an agent produces a physical consequence, its final chat message is not a sufficient audit log.

5. Validate on a simulator or dedicated testbed

Test parameter violations, failed sensors, network loss, duplicate commands, partial execution, and physical failures misclassified as software faults before exposing production equipment.

Where Apito fits

MHS is the device-control layer. Apito belongs in the model-access layer, where teams manage API keys, endpoints, available model IDs, request logs, routing, and cost visibility.

Application / agent

Apito: model access, routing, logs, and cost visibility

Claude and other supported models

MCP software tools + MHS hardware drivers

Business systems and physical devices
Application / agent

Apito: model access, routing, logs, and cost visibility

Claude and other supported models

MCP software tools + MHS hardware drivers

Business systems and physical devices

These layers are not interchangeable. Apito does not replace a robotic arm’s interlocks, and MHS does not manage model accounts or API spending. Clear ownership at each layer makes the system easier to operate and audit.

Apito is an independent third-party model API access service. It is not Anthropic and is not an official MHS hardware or safety partner.

Not every step needs the most capable model

The reference article also raises a useful business point: enterprises rarely buy “the number-one model” in isolation. Once a model clears the required quality threshold, latency, cost, reliability, and availability often decide which model receives production traffic.

That is especially true in a hardware-agent workflow, where one job contains several different workloads:

Workflow stage Most important qualities Sensible strategy
Sensor-state parsing and format conversion Latency, cost, consistent structure Prefer a smaller model or deterministic code
Experiment planning and fault diagnosis Reasoning quality and context Use a more capable model
Approval for high-risk operations Explainability and determinism Let a strong model advise; rules and people decide
Log summaries and report generation Batch cost and formatting consistency Use a cost-efficient model in batches

The useful question is not, “Should every call move to Opus 5.1 if it launches?” It is, which steps genuinely need stronger reasoning, and which only need a fast, inexpensive, dependable result?

This is where a model-access layer becomes useful. Teams can preserve one application interface, route tasks among models actually available in the console, record outcomes, and compare success rate, latency, and cost per completed task on their own evaluation set. A new model should receive limited test traffic first—not an immediate full migration based on a rumor.

Why MHS matters

MHS is not yet a universal, production-ready protocol. It does not solve legacy device integration, give models dependable physical intuition, or transfer safety and legal responsibility away from operators.

It does make one direction clear: agent competition is moving from “who answers better?” to “who can complete real work inside explicit boundaries?”

Models will change. Hardware will be replaced. Workflows will evolve. If capabilities, state feedback, and safety interfaces become standardized, physical agents may eventually be composed and migrated as software tools are today.

Opus 5.1 may still be worth watching. For teams building agents, however, MHS may be the more consequential signal: Claude is being designed not only to work inside a screen, but also to influence the world beyond it through inspectable interfaces.

FAQ

Can developers install MHS today?

Not as a mature, general-purpose package. It remains a limited research preview, and the complete specification and code are not yet broadly available.

Will MHS replace MCP?

No. MCP connects software tools and data. MHS connects physical devices. An agent can use both.

Can Claude run a laboratory autonomously with MHS?

No. The published cases depend on specific devices, drivers, expert-defined safety bounds, and human oversight. High-risk or irreversible operations should retain human approval.

What about legacy equipment with no API?

It will usually need an additional controller, gateway, or custom driver that converts device state and actions into a programmable interface.

Can Apito control MHS hardware directly?

No. Apito provides model API access. MHS drivers, hardware control, interlocks, and emergency-stop systems remain the responsibility of the equipment stack and its operators.

Sources

Get started

Use Apito to manage model API access, available model IDs, request logs, and cost visibility before connecting your agent to software or hardware tools.

Related Articles