otie-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENTRONS_ROBOT_IP | No | Opentrons robot IP address | 127.0.0.1 |
| OPENTRONS_API_TOKEN | No | API token (required only if authentication is needed) | |
| OPENTRONS_ROBOT_PORT | No | Opentrons HTTP API port | 31950 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| opentrons_search_docsA | Opentrons Python Protocol API & HTTP API ドキュメントをキーワード検索し、関連する仕様やサンプルコードを返却します。 |
| opentrons_validate_protocolB | Opentrons Python プロトコルコードの構文・物理ハードウェア要件(接続モジュール/ピペット)を事前チェックします。 |
| opentrons_upload_and_runA | プロトコル検証・アップロード・Run生成・実行開始を一括で行います。ハードウェア不足時はブロックします。 |
| opentrons_get_robot_statusA | ロボットの接続状態、モジュール・ピペット構成、および指定された Run の現在ステータスを取得します。 |
| opentrons_control_runA | 実行中の Run に対して play (開始/再開), pause (一時停止), stop (停止), resume (再開) の制御アクションを発行します。 |
| opentrons_execute_commandC | 指定された Run に対して個別のハードウェアダイレクトコマンドを発行・実行します。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clear primary purpose, and the descriptions make the differences understandable. However, opentrons_upload_and_run includes validation and starting execution, which overlaps with opentrons_validate_protocol and could create ambiguity about when to call both.
All tool names share the opentrons_ prefix and use snake_case, and most follow a verb_noun pattern (search_docs, validate_protocol, get_robot_status, control_run, execute_command). opentrons_upload_and_run breaks the pattern by combining two verbs without a direct object, which is a minor inconsistency.
Six tools is a well-scoped size for an Opentrons automation server. Each tool earns its place: documentation search, validation, upload/run, status, run control, and direct commands cover distinct operational needs without unnecessary redundancy.
The set covers the core workflow from documentation and validation through upload, execution, status monitoring, and run control. Minor gaps exist, such as a lack of separate upload-only or run-only actions and no way to retrieve run results or history, but agents can still accomplish the main tasks.