plr-mcp
This MCP server lets any MCP client (e.g., Claude Desktop) control lab automation instruments via PyLabRobot — no direct coding required. It supports both simulation (chatterbox) and real hardware (Hamilton STAR, Opentrons OT-2, Tecan Freedom EVO).
Liquid Handler Setup & Deck Management
setup_deck— Initialize the liquid handler with a chosen backend, auto-load tip rack and 96-well platedeck_state— Inspect the current deck layout, loaded resources, and run mode
Liquid Handling Operations
pick_up_tips/drop_tips— Pick up or return tips using a well range (e.g.,A1,A1:H1)aspirate/dispense— Aspirate or dispense a specified volume (µL) from/to plate wellstransfer— Full transfer in one step: pick up tips → aspirate → dispense → drop tips
Plate Reader
read_plate— Read in absorbance (configurable wavelength), fluorescence (excitation/emission/focal height), or luminescence (focal height) mode
Thermocycler Control
thermocycler— Set block/lid temperature, open/close lid, deactivate, or check status
Heater-Shaker Control
heater_shaker— Set temperature, shake (with RPM and optional duration), stop, deactivate, or check status
All tools work end-to-end in simulation mode by default, requiring no physical hardware.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@plr-mcpSetup the deck and transfer 100 µL from A1 to A2"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
plr-mcp
A Model Context Protocol server for PyLabRobot. It exposes a liquid handler, a plate reader, a thermocycler, and a heater-shaker as MCP tools, so any MCP client (Claude Desktop, Claude Code, or your own agent) can run lab-automation steps by calling tools instead of writing PyLabRobot code.
It ships in simulation mode by default. Every tool runs end to end against PyLabRobot's chatterbox backends with no instruments attached, so you can try the whole thing on a laptop. Point it at real hardware by setting one environment variable (see below).
Verified against PyLabRobot 0.2.1.
Why an MCP server (and not just tool-use)
Driving PyLabRobot from a Claude skill or direct tool-calls is tool-use inside one agent. An MCP server is a standalone process that speaks the Model Context Protocol over stdio, so any MCP client can discover and call these tools without knowing anything about PyLabRobot. This repo is the server.
Related MCP server: my-mcp-server
Install
git clone https://github.com/di-omics/plr-mcp.git
cd plr-mcp
pip install -e .This pulls in mcp and pylabrobot.
Prove it works (no hardware)
python examples/smoke_test.pyIt drives every tool through the chatterbox backends and prints ALL OK when
the run succeeds.
Run the server
plr-mcp # stdio transport, chatterbox simulation
PLR_MCP_BACKEND=star plr-mcp # target a real Hamilton STAR insteadTools
Tool | What it does |
| Build the liquid handler for the chosen backend and, for the Hamilton family, place a tip rack and a 96-well plate. Call this first. |
| List the resources on the deck and the run mode. |
| Pick up tips from the tip rack for a well range (for example |
| Return tips to the rack. |
| Aspirate a volume from each plate well in a range. |
| Dispense a volume into each plate well in a range. |
| One head pass: pick up, aspirate, dispense, drop. |
| Read absorbance, fluorescence, or luminescence. |
| Set block or lid temperature, open or close the lid, deactivate, status. |
| Set temperature, shake, stop, deactivate, status. |
| Generate the fastq-to-analysis pipeline for FLASH-seq UMI scRNA-seq: a shell pipeline from bcl to a UMI count matrix (bcl2fastq, umi_tools, STAR, samtools, featureCounts), plus a scanpy script from counts to clusters. External tools are not bundled. |
Well ranges use PyLabRobot syntax: a single well A1, a column A1:H1, or a
partial column A1:D1.
Connect a client
Claude Code
claude mcp add plr -- plr-mcpClaude Desktop
Add this to claude_desktop_config.json:
{
"mcpServers": {
"plr": {
"command": "plr-mcp"
}
}
}If plr-mcp is not on the client's PATH, use the absolute path to the console
script (which plr-mcp) or run it as python -m plr_mcp.server.
Backends
Pick the liquid-handling backend with PLR_MCP_BACKEND, or override it per
session in a setup_deck call (backend="star", etc.).
Backend | PyLabRobot backend | Deck | Runs with no hardware |
|
| STARLet | yes (default) |
|
| STARLet | no |
|
| OTDeck | no |
|
| EVO150 | no |
Only chatterbox runs with no instrument. The other three construct the real
PyLabRobot backend (correct API for 0.2.1) and attempt to connect; if no
instrument is reachable, or a vendor extra such as pylabrobot[opentrons] is
not installed, setup_deck reports that in notes instead of crashing. The
Hamilton tip and plate auto-load only for chatterbox and star; ot2 and
evo use vendor-specific labware, so load your own.
For ot2, pass the robot IP:
PLR_MCP_BACKEND=ot2 PLR_MCP_OT2_HOST=169.254.1.1 plr-mcpThe non-liquid-handling instruments (plate reader, thermocycler, heater-shaker)
run on chatterbox simulation and expose real hardware backends as clearly
marked extension points in plr_mcp/lab.py (the _ensure_* methods). Wire in
your own (for example an Inheco ODTC thermocycler or a BioTek reader) and
validate on your deck before trusting a run.
Layout
plr_mcp/
lab.py stateful PyLabRobot wrapper (all the real calls live here)
server.py FastMCP server, one thin tool per Lab method
tests/
test_lab.py pytest suite, runs on chatterbox (no hardware)
examples/
smoke_test.py end-to-end run with no hardwareDevelopment
pip install -e '.[dev]'
ruff check plr_mcp tests # lint
ruff format --check plr_mcp tests
mypy plr_mcp --check-untyped-defs
pytest -qCI runs all four on Python 3.10 through 3.13 for every push and pull request.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/di-omics/plr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server