Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OPENTRONS_ROBOT_IPNoOpentrons robot IP address127.0.0.1
OPENTRONS_API_TOKENNoAPI token (required only if authentication is needed)
OPENTRONS_ROBOT_PORTNoOpentrons HTTP API port31950

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

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 6 tools

Disambiguation4/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivitySlowing
ResponsivenessNo issues