Skip to main content
Glama
Yike-Ye
by Yike-Ye

OriginLab-MCP

An MCP server for OriginLab Origin. It reads and writes worksheets, builds and styles multi-panel graphs, and exports figures — and it is careful about the difference between what Origin accepted and what Origin did.

1.0.0. Every tool here has been run against a real Origin 2024, the Origin App installs and starts the bridge, and examples/five_panel_figure.py builds a five-panel figure end to end.

Known gaps, so they are not a surprise: a legend placed in a corner is checked for being inside its panel, not for sitting on top of the data; a log axis gets no minor ticks unless you ask; and the 213-entry option table records what Origin documents, not what each option was measured to do — sixteen of them have been watched change a picture.

Requirements

  • Origin or OriginPro 2021b or newer (embedded Python 3.9+)

  • Python 3.10+ for the server

  • Windows, either natively or in a VM

Related MCP server: Photoshop MCP Server

Install

pip install originlab-mcp
originlab-mcp --build-app .

That prints the three steps Origin needs, which are worth stating here because the obvious one does nothing: dragging the folder onto the Apps gallery is accepted in silence and adds no button. Copy the generated OriginLab MCP Bridge folder into %LOCALAPPDATA%\OriginLab\Apps, pack it from Origin's Command Window with

mkOPX app:="OriginLab MCP Bridge" opx:="C:\path\to\OriginLab MCP Bridge.opx";

— backslashes, because forward slashes hang mkOPX — and drag the resulting .opx into Origin. A button appears; clicking it brings the Script Window forward, where the bridge reports starting, loaded, serving.

Point your MCP client at originlab-mcp.

originlab-mcp --status says whether a bridge is listening, and exits non-zero when one is not. originlab-mcp --stop ends it.

Stopping is a command rather than a second button because a button must not do the work itself: while the bridge serves it holds Origin's UI thread, so anything the button ran would run from inside the message pump. A button that only spawns an external process is possible -- that is how the upstream project does it -- but the instruction still has to reach the bridge over the socket, and --stop is that instruction without the indirection.

What's different

Origin accepts a great deal that it then ignores, without ever saying so.

  • set <plot> -zzzz 9 — an option Origin has never heard of — returns true, reads back as 9.0, and leaves the graph pixel-for-pixel identical.

  • plot:=2003 is not a plot type. Origin makes the window, draws the axes, writes the legend, and plots nothing.

  • A style written to a plot inside a group reads back exactly as requested, while Origin goes on drawing the group's style.

None of these is catchable from the reply, so the checking happens before the write and after the figure:

Before. Options are checked against Origin's own documented list, and an invented one is refused with the options it was probably meant to be. This matters because the real names are unguessable — line width is -w, bar fill pattern is -pfp — so a plausible guess is the likely failure, not a typo. Writing to a grouped plot member is refused outright. Plot types come from oPlotIDs.h in the Origin installation rather than from documentation, and every name in the table was drawn and looked at.

After. A per-call check cannot reach the question that matters, which is whether the figure is right. So the operations that build one report the thing that could contradict them:

operation

what it reports back

origin_plot

the layer used, and how many plots Origin says are in it

origin_layers_arrange

every layer's real geometry, and the box they all occupy

origin_legend_set

where the legend is, and whether that is inside its layer

origin_axis_set

which side of the frame the title landed on

That list exists because of a measured failure: a five-panel figure where all twenty-three steps returned OK and the result was unusable. One legend had been placed at left = 24953 on a page 6432 wide — legend.x is in data coordinates, not the percentages it was being given — and Origin's export grew the canvas to contain it, squeezing the figure into a corner. Nothing in any reply said anything was wrong.

A read-back is reported as a read-back, never as proof:

{
  "requested": 60,
  "readback": {"readable": true, "value": 60.0, "matches_request": true},
  "readback_means": "Origin stored this value where 'get' can find it. It is not
                     proof that the graph changed: Origin also stores options it
                     does not recognise."
}

Exporting the graph is the only thing that settles it, which is why origin_graph_export is a first-class tool rather than a way to save pictures.

Arguments this server does not read are refused, with the nearest name it does. The same failure it guards against in Origin turned up here first: worksheet_read takes max_rows, and a call passing rows=3 used to get every row in the sheet and no indication its argument had been dropped.

The tool surface is small on purpose. One plot tool with a plot_type parameter rather than one per chart type; one plot_option_get/set pair rather than a wrapper per property.

Tools

origin_ping

Is the bridge alive — answers even when originpro is broken

origin_bridge_status

Where the bridge is, and whether it is answering

origin_worksheet_info

Size, column names, formats

origin_worksheet_read

Columns as lists, refusing rather than truncating

origin_worksheet_write

Columns in, with the format stated not guessed

origin_plot

Plot columns into a new page or a new layer of an existing one

origin_graph_info

Layers, plots, addresses, group membership

origin_graph_export

PNG out — and the only witness that a style took

origin_layer_add

Add a panel, and say what its index is

origin_layers_arrange

Grid the panels, and report where they really went

origin_legend_set

Rebuild a legend, place it, check it is inside its panel

origin_axis_set

Scale, range and title, with the title's side reported

origin_axis_get

Read an axis back

origin_plot_option_get

Read one LabTalk set option

origin_plot_option_set

Write one, and report what that established

origin_set_options

Search Origin's 213 documented set options

origin_labtalk

The escape hatch, with Origin's output captured

examples/five_panel_figure.py builds a five-panel figure end to end and prints, at every step, the number that could contradict it.

Setups

Windows, everything local — the usual case. Server and Origin on the same machine, talking over loopback TCP.

Origin in a Windows VM, working from macOS or Linux — also supported. The server runs inside the VM over ssh; only the MCP client is on the host. This works because the server reaches Origin through a loopback socket rather than COM, which cannot cross a Windows session boundary.

MCP client  ──ssh──▶  server (Windows)  ──TCP 127.0.0.1──▶  Origin

docs/remote-origin.md walks through that one: the ssh server, the key (Windows puts an administrator's in a different file and ignores the usual one without saying so), and pointing an MCP client at it.

Notes on Origin's behaviour

Things measured here that no documentation mentions:

  • originpro is single-threaded, absolutely. Called from any thread but Origin's UI thread it blocks while holding the GIL and deadlocks the whole embedded interpreter. Origin's window stays responsive; its Python is gone. The bridge therefore serves on that thread and pumps Origin's message queue between requests.

  • A modal dialog stops the bridge, because the dialog holds the thread the bridge serves on — while the handshake file goes on saying it is up. Exporting into a directory that does not exist opens one, so that is checked before the export is sent.

  • A legend has two pairs of coordinates in different spaces. legend.x/legend.y are the layer's data coordinates; legend.left/.top are page units, the same ones page.width reports.

  • plotxy ogl:=<new> makes a new layer, not a new page, and does not make it active. [<new>] is the new page.

  • Origin exchanges the axes for bar charts and reports it through no layer property. It moves the title objects to match and keeps their rotation, so the value-axis title ends up under the frame reading bottom to top.

  • -w is points × 500; -wp takes points. Passing a point value to -w gives a hairline rather than an error.

  • A fill pattern set with -pfp alone is invisible: Origin draws it in the fill colour, so -pfc is needed too, and neither changes anything on its own.

  • LabTalk stops at the first statement it rejects, so a script that reports failure has run an unknown prefix of itself.

  • Origin refuses to start Python while a command is in flight, and every bridge request is one. Scripts containing run -pyf or py.exec are refused up front rather than failing without explanation.

References

Origin and OriginPro are products of OriginLab Corporation. This project is not affiliated with OriginLab.

Licence

MIT.

Available Tools

17 tools
origin_axis_getA

Read an axis's scale and range as Origin currently holds them.

Worth doing before setting a range: Origin's own rescaling may already have moved it, and the number a caller remembers setting is not necessarily the one in the graph.

ParametersJSON Schema
NameRequiredDescriptionDefault
axisNox
graphYes
layerNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It communicates that the tool is a read operation and discloses the important nuance that returned values reflect Origin's current state, not whatever the caller previously set. This is genuinely useful behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded: the first sentence states the action and object, and the second provides a concrete motivating use case. Every sentence earns its place with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the tool's purpose and when to use it, and an output schema exists to document return values. However, with three parameters and zero schema-level parameter descriptions, the missing guidance on axis and layer semantics leaves the definition incomplete for an agent that needs to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description only vaguely references 'an axis' without explaining the axis, graph, or layer parameters. It does not clarify valid axis values, what layer means in Origin, or how to identify the target graph. The description fails to compensate for the schema's complete lack of parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Read an axis's scale and range as Origin currently holds them.' This clearly identifies it as a getter and distinguishes it from sibling tools like origin_axis_set.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly advises using this tool before setting a range, noting that Origin's rescaling may have changed the actual value. This gives clear contextual guidance, though it does not explicitly name the alternative tool or state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_axis_setA

Set an axis's scale, range or title, and read back what Origin holds.

scale is a name (linear, log10, ln, log2, probability, reciprocal) or an Origin scale number. Omitted arguments are left alone.

Unlike plot styles, these read back from the same properties Origin draws from, so matches_request is a real check. Origin clamps and rounds axis ranges for its own reasons, and a mismatch usually means it did.

Origin swaps the axes of bar charts internally: the value axis of a horizontal bar chart is the one LabTalk calls y. Setting what looks like the value axis on one will retitle the categories instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
endNo
axisNox
graphYes
layerNo
scaleNo
startNo
titleNo
incrementNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full responsibility and excels: it discloses clamping/rounding of axis ranges, the internal axis swap for horizontal bar charts, and the fact that `matches_request` is a genuine verification. These are non-obvious and valuable behavioral details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well organized: purpose first, then parameter behavior, then important caveats. Every sentence contributes useful information without unnecessary filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with 8 parameters and no annotations, this description covers the essential guide: scope, real validation behavior, saturation effects, and a subtle internal axis-swapping hazard. It is complete enough for an agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It adds concrete meaning for `scale` by listing valid names, explains that omitted arguments are untouched, and warns about axis semantics in bar charts. It could go further on `graph`, `layer`, `start`, `end`, and `increment`, but the core parameters are well clarified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Set an axis's scale, range or title, and read back what Origin holds.' This clearly distinguishes it from read-only siblings like origin_axis_get and from plot-style setters like origin_plot_option_set.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context, such as 'Omitted arguments are left alone' and 'Unlike plot styles, these read back from the same properties Origin draws from.' It does not explicitly list alternative tools or when to prefer them, but the usage context is strong.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_bridge_statusA

Report where the bridge is, and whether it is actually answering.

These are different questions, and the difference is not academic. The bridge publishes a handshake file when it starts and withdraws it when it stops -- but a modal dialog inside Origin takes over the UI thread the bridge serves on, so it can stop answering for hours while the handshake goes on saying it is up. Measured: set <dataset> -dc opens such a dialog, and nothing was served until someone clicked it.

So announced is what the file says and answering is what a request found. Only the second means the bridge can do anything. Pass check_liveness=False to skip the request when the answer does not matter.

ParametersJSON Schema
NameRequiredDescriptionDefault
check_livenessNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full behavioral burden. It discloses the handshake-file mechanism, the modal-dialog UI-thread stall, the measured consequence, and the semantic difference between announced and answering. This is far beyond what the schema alone could convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than minimal but front-loads the core purpose and every sentence earns its place. The measured example is arguably extra, but it reinforces why the announced/answering distinction matters for correct usage.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple status check with one optional parameter, and the description covers its key behavioral nuance and parameter semantics. An output schema exists, so the description need not explain the return structure. Nothing critical is missing for an agent to call this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema gives no description for check_liveness (0% coverage), but the description fully explains it: 'Pass check_liveness=False to skip the request when the answer does not matter.' This adds real meaning beyond the bare boolean type and default value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Report where the bridge is, and whether it is actually answering.' The description immediately distinguishes two separate questions ('announced' vs 'answering'), which also helps separate this tool from sibling tools like origin_ping. The core purpose is unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context about when the status matters and explicitly instructs when to skip the liveness check: 'Pass check_liveness=False to skip the request when the answer does not matter.' It does not name an alternative tool directly, but the announced-vs-answering distinction gives the agent enough context to select this tool appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_graph_exportA

Export a graph to a PNG.

Also the only way to find out whether a style change did anything: Origin stores values it never acts on, so the picture is the only witness. The result reports where Origin was told to write, not that it succeeded -- expGraph says almost nothing about failure.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphYes
widthNo
filenameYes
directoryYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full behavioral disclosure burden. It reveals that Origin may store values without acting on them, that the result only reports the intended write location rather than success, and that expGraph says almost nothing about failure. This is substantial, honest behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with the core purpose. The second paragraph adds valuable caveats without unnecessary padding; every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers purpose and failure behavior well, and an output schema exists to explain return values. However, with no annotations and zero parameter descriptions, the agent still lacks enough detail about how to correctly specify graph, filename, directory, and width.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description needed to explain the parameters, but it does not clarify graph, width, filename, or directory semantics. It only hints that filename/directory are the write destination, leaving the agent to infer how to populate the required fields.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence, 'Export a graph to a PNG,' states a specific verb and resource and clearly distinguishes this tool from siblings like origin_plot or origin_graph_info. The added context about verifying style changes reinforces its unique role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly identifies when to use this tool: it is 'the only way to find out whether a style change did anything.' It does not explicitly list when-not-to-use scenarios or alternative tools, but the 'only way' framing provides strong usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_graph_infoA

List a graph's layers and plots, with the addresses styling needs.

Also reports each plot's group_mode. A plot in a group is drawn with the group's style, so writing to a member is refused -- check here before trying to style one.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries the full burden, and it discloses a key behavioral trait: writes to group-member plots are refusedassed. It adds meaningful context beyond the schema by explaining the group_mode consequence. It falls short of a 5 because it doesn't mention return shape or explicit side-effect/purity, though the output schema partially covers return expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences with the core purpose front-loaded. The second sentence adds a genuinely useful behavioral detail, but the phrase 'with the addresses styling needs' is slightly awkward and could be clearer. Still, no wasted sentences.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present and only one parameter, the description covers the why-to-use and key behavioral consequence. It is reasonably complete, though the styling-refusal behavior could be elaborated slightly. The primary gap is the undocumented 'graph' parameter format, which affects completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% and the description does not clarify what the 'graph' parameter should be — name, ID, path, or handle. The tool name implies a graph identifier, but the description adds no format or resolution details beyond the schema, leaving the field ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action (list) and resource (a graph's layers and plots), and notes it also carries styling addresses. This distinguishes it from sibling tools like origin_plot_option_get (targeted option retrieval) and origin_axis_get (axis outcomes), so an agent can clearly differentiate it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to 'check here before trying to style one', providing a concrete when-to-use directive tied to the refusal behavior. This is actionable guidance that tells the agent to call this tool before attempting write operations, clearly distinguishing it from write-oriented siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_labtalkA

Run a LabTalk script inside Origin and return what it printed.

The escape hatch: anything Origin can do from its command window. Prefer a dedicated tool where one exists, because this one cannot check its own work.

returned says the script parsed and dispatched, not that it did anything. A LabTalk script stops at its first bad expression, so when returned is false the last captured line is the last line that ran. Origin's own error text goes to its console and cannot be captured from here.

Scripts that start Python (run -pyf, py.exec) are refused: Origin will not run Python while a command is in flight, and every request here is one.

ParametersJSON Schema
NameRequiredDescriptionDefault
scriptYes
capture_outputNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it delivers: it explains that `returned` only means parsed/dispatched, not that anything happened; it discloses that scripts stop at the first bad expression and the last captured line indicates progress; and it warns that Origin's own error text cannot be captured. It also explains the Python refusal with the in-flight-command reason.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact relative to the complexity of an escape-hatch tool, and every sentence contributes: purpose, use preference, return-value meaning, failure behavior, and a critical limitation. The first line is a clear summary, and the details are front-loaded in order of importance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers use guidance, result interpretation, error behavior, and refused script types, which is strong for a general-purpose tool. The one notable gap is explicit handling of the `capture_output` parameter, especially since the schema provides no explanation for it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, so the description must compensate. It adds meaningful semantics for `script` by explaining execution behavior, failure mode, and Python restriction. However, it never explicitly describes `capture_output` or how it affects the returned result, so the compensation is incomplete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Run a LabTalk script inside Origin and return what it printed.' It also positions itself as 'the escape hatch' and tells the agent to prefer dedicated tools, which distinguishes it from the many sibling tools without needing to open their schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says to 'prefer a dedicated tool where one exists' because this tool 'cannot check its own work,' giving clear when-to-use versus when-not-to-use guidance. It also states that Python-starting scripts are refused and why, which further constrains appropriate usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_layer_addC

Add a layer (a panel) to a graph, and report which index it got.

Returns the new layer's index because every other operation takes one, and assuming the new layer is 1 is wrong the moment the graph already had two.

ParametersJSON Schema
NameRequiredDescriptionDefault
graphYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclose behavioral traits. It clearly indicates the operation is a mutation (adds a layer) and explains the return index's importance due to the graph possibly already having layers. However, it does not mention potential failure modes, permissions, or side effects beyond the addition. The key behavioral insight about the index is valuable, but the description could be more thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no wasted words. The first sentence states the action and return value; the second provides rationale and context. It is well-structured and front-loads the essential information, though it could be slightly improved by adding parameter context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, but the description omits critical context such as what the 'graph' parameter represents, any preconditions (e.g., graph must exist), and error behavior. While the return-index explanation is useful, the description lacks sufficient guidance for an agent to use the tool correctly without additional assumptions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not elaborate on the 'graph' parameter. It only says 'to a graph,' which is vague and doesn't explain what format or identifier the string should take. Given the single parameter, the description should clarify how to specify the graph, but it fails to do so, leaving the agent to infer from context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: 'Add a layer (a panel) to a graph' and explicitly mentions the return value 'report which index it got.' The verb and resource are specific, and the description differentiates from siblings by focusing on layer addition, even if not naming alternatives. It is slightly less explicit than a 5 because it doesn't explicitly contrast with sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description explains why the index return matters but does not mention any conditions, preconditions, or alternative tools. An agent receives no context about when to invoke this tool over other layer-related operations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_layers_arrangeC

Lay a graph's layers out as a grid of panels.

A grid too small for the layers is refused: Origin would leave one off the page, and nothing about the result would say so.

ParametersJSON Schema
NameRequiredDescriptionDefault
rowsYes
graphYes
columnsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

C2.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must carry the full behavioral burden. It does disclose an important behavior: a grid too small is refused because it would omit a layer. However, it does not state whether the operation is destructive, whether it returns a success/error object, or what the resulting grid layout implies for existing layers. Partial but not complete.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is succinct, with the primary action front-loaded and a relevant constraint in the second sentence. Every sentence contributes; there is no fluff. Slightly reduces score because it does not hint at parameter meaning, but the structure itself is clean.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given three required parameters with zero schema documentation, and no output schema details provided to the agent, the description is insufficient. It does not explain how rows/columns map to the grid, what the 'graph' identifier refers to, or the tool's effect on existing layers. The single constraint is helpful but overall the agent lacks enough context to call this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema descriptions are absent (0% coverage), and the tool description provides no meaning for 'rows', 'columns', or 'graph'. An agent cannot infer likely data types (graph is presumably a reference, rows/columns positive integers), units, or acceptable ranges. This is a significant gap that prevents correct invocation without external knowledge.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (lay out) and the resource (a graph's layers) as a grid of panels. It distinguishes the tool from siblings that export, create, or set graph properties, though it does not explicitly name alternatives. The exclusion of the 'too small' case adds specificity, but the core purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus other graph manipulation tools like origin_plot, origin_layer_add, or origin_axis_set. The description does not mention common scenarios, prerequisites (e.g., graph exists), or exclusions. A single sentence about the refusal condition hints at a constraint but does not help an agent choose this tool over alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_legend_setA

Rebuild a layer's legend, and optionally place or hide it.

Origin generates its legend from the plots present at the moment it is refreshed rather than storing it, so a legend showing the wrong series is almost always one that has not been refreshed since the plots changed. Call this after adding plots.

position is one of top_left, top_right, bottom_left, bottom_right.

ParametersJSON Schema
NameRequiredDescriptionDefault
showNo
graphYes
layerNo
positionNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It explains that the legend is generated from plots and that calling after plot changes refreshes it, which is useful behavioral context. However, it does not explicitly state that the rebuilt legend overwrites any existing legend, though this is implied by 'rebuild'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, comprising two sentences with no unnecessary fluff. It efficiently conveys the core action, the rationale, and the key parameter detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and the absence of an output schema, the description adequately covers what an agent needs to know: what it does, when to call it, and the meaning of the main parameter. There are no related legend tools among siblings, so no confusion arises.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides no descriptions for parameters, and the description only explains the 'position' parameter's allowed values. The meanings of 'graph', 'layer', and 'show' are not explicitly described, though they may be inferred from typical Origin usage. This leaves some ambiguity for an agent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the tool's purpose: to rebuild a layer's legend, with optional placement or hiding. The description distinguishes it from siblings by focusing on legend management, which no other tool handles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly advises calling this after adding plots, which is the primary use case. It also implies the legend is derived from current plots, giving a clear when-to-use signal, even though there is no alternative legend tool to contrast with.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_pingA

Check the bridge is reachable and report what is on the far end.

Answers even when originpro is broken, which is when it matters most.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are absent, so the description carries the full burden. Where the description explains that the tool 'answers even when originpro is broken', a behavioral trait that is non-obvious from the name and critical for failure-recovery reasoning. The ping semantics also imply a non-destructive read, though the description does not state explicitly that it has a side effects (minor for a 0-param heartbeat tool).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no filler. The core operation is front-loaded in the first sentence, and the second sentence adds a high-value behavioral criterion (works when originpro is broken) that justifies the entire purpose. Nothing earned its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 0-parameter tool with an output schema, the description is largely sufficient: it says what the tool does, what it reports, and when it works. The remaining gap is selection clarity — an agent could hesitate between origin_ping and origin_bridge_status because the description never distinguishes them or routes to one over the other.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so per the rubric the baseline is 4. The description needs no parameter-level detail; the far-end report is the only input/output relevant information, and the tool is invocable with no arguments.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb+resource ('Check the bridge is reachable') and states what the tool reports ('report what is on the far end'), making the plumbing immediate. It does not explicitly distinguish itself from the origin_bridge_status sibling, though 'Answers even when originpro is broken' hints at the differentiation without naming it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage context is only implied: the line 'which is when it matters most' signals that this tool is valuable during failure scenarios, so an agent can infer it is the right choice when Origin is broken. There is no explicit when-to-use or when-not-to-use guidance relative to origin_bridge_status or the other origin_* tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_plotA

Plot worksheet columns into a graph layer, and return the graph and layer.

Without graph this makes a new graph page. Give graph to add another panel to one that already exists -- that is how a multi-panel figure is built, one call per panel, then origin_layers_arrange.

plot_type is a name (line, scatter, column, bar, area, box, histogram, stack_column, ...) or any Origin plot-type id as a number, so an unusual chart is never blocked by the name list.

Columns are given as zero-based indexes or Origin short names. Several y columns go into the same layer, grouped unless group is false.

Use the returned graph and layer for everything afterwards. Origin chooses the name, and the new layer is not the active one, so neither can be assumed. plots_in_layer is read back from Origin rather than counted from the request.

ParametersJSON Schema
NameRequiredDescriptionDefault
xYes
yYes
bookYes
graphNo
groupNo
sheetNoSheet1
plot_typeNoline

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations exist, the description must carry full weight. It discloses important behavioral details: the new layer is not the active one (so graph and layer must be used), plots_in_layer is read back from Origin, plot_type accepts names or numeric IDs, and columns can be indexes or short names. This is thorough, though error conditions and side effects are not addressed, which is acceptable for a plotting tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is organized into clear paragraphs, each addressing a distinct aspect: core purpose, the graph parameter workflow, plot_type flexibility, column input format, and return-value usage. It is efficient for the amount of information conveyed, neither overly verbose nor cryptic.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (7 parameters, 0% schema coverage), the description is quite complete. It explains the return values (graph and layer), when to use them, multi-panel construction, and parameter nuances. The only omissions are explicit details on 'book' and 'sheet' semantics, but these are inferable and the output schema likely covers return fields. Overall, the description equips an agent to call the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must explain parameters. It covers x, y, graph, group, and plot_type in detail (e.g., columns as indexes or short names, grouping behavior, plot_type flexibility). However, 'book' and 'sheet' are not explicitly described; their meaning is only implied by context. This is a minor gap but overall the description adds significant semantic value beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the core operation clearly: 'Plot worksheet columns into a graph layer, and return the graph and layer.' It uses a specific verb ('plot'), a resource ('worksheet columns'), and a target ('graph layer'). This is easily distinguished from siblings like origin_plot_option_set or origin_layer_add, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains how to use the tool for both new graphs and adding panels to existing ones, mentioning the multi-panel workflow with origin_layers_arrange. It clarifies the graph parameter behavior but does not explicitly contrast this tool with alternatives (e.g., when to use origin_plot vs. origin_layer_add). The usage context is strong, though explicit exclusions are absent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_plot_option_getA

Read one LabTalk set option off a data plot.

option is a LabTalk option token such as -w (line width, in points x 500) or -pfp (bar fill pattern). Use origin_set_options to find one -- the names are not guessable, and an invented one would be accepted by Origin and do nothing.

ParametersJSON Schema
NameRequiredDescriptionDefault
plotNo
graphYes
layerNo
optionYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full behavioral burden. It clearly states the operation is a read ('Read') and gives concrete examples of options and their semantics. It also warns about the risk of using invalid options. However, it doesn't describe potential side effects (none expected), error cases, or return format, but the output schema covers the return. Overall adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose, then a crucial usage hint about option names and the companion tool. No fluff, highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations, the description carries the full behavioral burden. It discloses that 'option' is a LabTalk token, gives examples, warns about invalid names, and directs to origin_set_options. It doesn't explain return format, but an output schema exists. The parameter semantics for graph/plot/layer are left implicit, though likely inferable from the context of Origin data plots. Overall quite complete but not exhaustive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has no descriptions (coverage 0%), so the description must compensate. It explains the 'option' parameter well, giving examples and warning about guessabilityemanding reference to origin_set_options. However, it does not explain the semantics of 'graph', 'plot', and 'layer' parameters, leaving the agent to infer they refer to plot identification. Some compensation, but incomplete.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads a LabTalk set option from a data plot, with a specific verb ('Read') and resource ('data plot'). It differentiates from sibling origin_plot_option_set by focusing on read versus set, and names the companion tool origin_set_options for discovering valid options. This makes the purpose unambiguous and distinct.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly instructs to use origin_set_options to find option namesaine a non-obvious set, and warns that invented options are accepted but ineffective. This provides clear when-to-use and when-not-to-use guidance, effectively distinguishing this read tool from its set counterpart.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_plot_option_setA

Set one LabTalk set option on a data plot, and read it back.

The result's readback says whether Origin stored the value. Read readback_means before treating that as success: Origin stores options it does not recognise, so a matching read-back is necessary evidence, not sufficient. Render the graph if you need to know it changed.

Writing to a plot inside a group is refused, because Origin would draw the group's style regardless while the write read back as if it had worked.

ParametersJSON Schema
NameRequiredDescriptionDefault
plotNo
graphYes
layerNo
valueYes
optionYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.1/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It does this exceptionally well: it explains that readback reports whether Origin stored the value, warns that Origin stores unrecognized options so a matching readback is necessary but not sufficient evidence, tells the caller to render the graph to confirm visible changes, and discloses that group writes are refused because of misleading readbacks. This is far beyond generic 'sets a value' language.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core action and then adds three dense, high-value caveats: readback semantics, readback_means caution, and group refusal. Every sentence earns its place; no filler or repetition. Despite three paragraphs, the total length is appropriate for the behavioral nuance it needs to convey.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Even though an output schema exists and rich behavioral caveats are provided, the input side remains under-specified. With no parameter descriptions, no enums, and no examples, the description does not give an agent enough grounding to confidently construct valid calls. The behavioral warnings are excellent, but they do not compensate for the missing parameter semantics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, but it does not explain the meaning or accepted formats of graph, layer, plot, option, or value. It references a 'LabTalk set option' and a 'plot inside a group,' but gives no examples or enumeration of valid option names, value ranges, or how to address plots in groups. The agent is left to guess the exact parameter values it should supply.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and object: 'Set one LabTalk `set` option on a data plot, and read it back.' This clearly identifies the tool as a setter for plot options and distinguishes it from the sibling getter origin_plot_option_get. It also communicates the unusual read-back behavior, so there is no confusion about what the tool accomplishes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear raison d'être: set one plot option and read back the result. It also gives an explicit when-not condition: writing to a plot inside a group is refused. It does not name sibling alternatives directly, but the setter/getter pairing with origin_plot_option_get is strongly implied by the tool names and the action described.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_set_optionsA

Look up LabTalk set options by what they control.

Origin's option names are short and unguessable -- line width is -w, bar fill pattern is -pfp -- so guessing produces plausible names that Origin accepts and ignores. Search here instead.

Each entry's verified says whether this option has been exercised against a real Origin: null means documented but untested, which is most of them.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
searchNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It reveals that this is a lookup operation (not a mutation), warns about the risk of guessing, and explains the `verified` field as indicating whether an option has been tested against a real Origin. This goes beyond a simple 'searches options' statement and sets accurate expectations about reliability. It doesn't contradict any annotations (since none exist).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured, with the purpose stated first, followed by contextual warnings and a useful note about the `verified` field. Every sentence contributes value; there is no filler. It could potentially add a line about parameter usage, but the current length is appropriate.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has an output schema, so return values are presumably documented there. With only two optional parameters and no required ones, the missing parameter semantics are the main gap. The description covers purpose, usage context, and reliability, but leaves parameter details unexplained. For a lookup tool with this complexity, the description is moderately complete but not fully self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero description coverage, so the description must compensate for the parameters. It does not explain `limit` or `search` at all. While the names are somewhat self-explanatory, the description doesn't specify how `search` matches (e.g., by control name, option value, or what the option controls). The description says 'look up ... by what they control,' implying search matches by the thing it controls, but this is not explicit. This is a significant gap given 0% schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states exactly what the tool does: 'Look up LabTalk `set` options by what they control.' It names the resource (LabTalk set options) and the action (look up), and the added context about unguessable names clearly distinguishes this from sibling tools like origin_plot_option_get/set, which deal with plot options rather than general set options.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly advises using this tool instead of guessing option names, which is practical usage guidance. It also explains the consequence of guessing (Origin accepts and ignores plausible names). It doesn't explicitly name alternative tools, but the sibling set includes plot option tools which are clearly different in scope. The guidance is clear and context-rich, though it could have been more explicit about when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_worksheet_infoA

Describe a worksheet -- size, column names, formats -- without reading it.

Omit both arguments for the active worksheet.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookNo
sheetNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the behavioral burden. It usefully discloses that the tool does not read worksheet contents and returns descriptive metadata only. It stops short of stating behavior on missing worksheets or confirming the absence of side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler; the core purpose is front-loaded and the active-worksheet note is placed second. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema covers return structure, so the description need not explain it. With only two optional parameters, the active-worksheet behavior is stated, and the metadata scope is explicit, making the definition complete for this simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has no parameter descriptions, but the description adds key semantics: omitting both arguments targets the active worksheet. The titles 'Book' and 'Sheet' plus the tool's context make the remaining mapping reasonably clear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource: 'Describe a worksheet' with concrete metadata delivered (size, column names, formats). The qualifier 'without reading it' distinguishes it from the sibling origin_worksheet_read, making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives a practical invocation rule: omit both arguments to target the active worksheet. It doesn't explicitly name alternatives or when-not-to-use conditions, but the 'without reading it' contrast implies the read sibling would be used when cell data is needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_worksheet_readA

Read worksheet columns as lists, with the format Origin holds them in.

A read that could not fit is refused rather than shortened, because a silently truncated answer looks exactly like a short worksheet. Use start_row and max_rows to take a window deliberately, and read rows_in_sheet and rows_after_window -- named separately because a single "rows available" count reads exactly like a short worksheet.

Date and time columns come back as Julian day numbers, not text. Converting them involves choices -- timezone, calendar, precision -- that belong to whoever knows what the data means.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookNo
sheetNo
columnsNo
max_rowsNo
start_rowNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does so exceptionally. It discloses that an unreadable portion causes refusal rather than silent truncation (because a truncated answer looks like a short worksheet), that row counts are returned separately to avoid ambiguity, and that dates come back as Julian day numbers. These are subtle, high-risk behaviors an agent must know to use the tool safely.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, then layers behavioral caveats in order of importance. Every sentence earns its place—the refusal rule, the window guidance, the row-count separation, and the Julian-date warning are all substantive. It is slightly longer than strictly necessary but has no waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 5-parameter tool with no annotations and 0% schema description coverage, the description covers the non-obvious semantics thoroughly. An output schema exists, so return values do not need explanation. The only minor gap is explicit guidance on what 'book' and 'sheet' refer to, but those are reasonably inferable from the tool family.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It adds real meaning for start_row and max_rows by explaining the windowing idiom and the semantic consequences of the no-truncation rule. book, sheet, and columns are left to the schema, but they are self-explanatory enough that the marginal value of explaining them is low. Coverage of the riskiest parameters is good.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ('Read worksheet columns as lists') and the native format Origin holds them in. This clearly distinguishes it from siblings like origin_worksheet_info (metadata) and origin_worksheet_write, though it does not explicitly name them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance on when to use start_row/max_rows to take a deliberate window, and advises reading rows_in_sheet and rows_after_window. It also warns about date/time columns coming back as Julian numbers and defers conversion choices. What it lacks is explicit exclusion of alternatives among siblings, but the usage direction is strong.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

origin_worksheet_writeA

Write columns into a worksheet.

Each column is {"name": ..., "format": ..., "values": [...]}. The format is stated rather than inferred: double, int, text, mixed, date, time, complex. Guessing from the values is how columns get quietly corrupted -- whole numbers are not necessarily an integer column, and one empty cell can turn a numeric column into text.

Dates go in as Julian day numbers with format: "date".

ParametersJSON Schema
NameRequiredDescriptionDefault
bookNo
sheetNo
columnsYes
start_colNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden and adds meaningful behavioral context: format is deliberately not inferred, guessing can quietly corrupt columns, and dates must be Julian day numbers. It does not state overwrite/append behavior, but the key data-integrity warning is valuable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, with every sentence earning its place: the core write action, the column schema, the rationale for explicit formats, and the date encoding requirement. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

It covers the complex column format semantics and date behavior sufficiently, but it omits target-worksheet semantics (book/sheet) and start_col placement, and does not clarify whether writing replaces or appends columns. For a 4-parameter tool with no annotations, this is a minimum-viable description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It thoroughly explains the 'columns' element shape and valid format values, but says nothing about 'book', 'sheet', or 'start_col', leaving those parameters reliant on their names and defaults.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific action and resource: 'Write columns into a worksheet.' It also provides concrete column structure and format strings, making the tool's role unmistakable and clearly distinct from worksheet read/info siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or when-not-to-use guidance is provided, and no sibling alternatives are named. The description implies writing use but does not distinguish it from origin_set_options or origin_worksheet_read for an agent deciding between tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 17 tool updatesv0.1.0
    • First observedorigin_axis_get
    • First observedorigin_axis_set
    • First observedorigin_bridge_status
    • First observedorigin_graph_export
    • First observedorigin_graph_info
    • First observedorigin_labtalk
    • First observedorigin_layer_add
    • First observedorigin_layers_arrange
    • First observedorigin_legend_set
    • First observedorigin_ping
    • First observedorigin_plot
    • First observedorigin_plot_option_get
    • First observedorigin_plot_option_set
    • First observedorigin_set_options
    • First observedorigin_worksheet_info
    • First observedorigin_worksheet_read
    • First observedorigin_worksheet_write

TDQS

A3.6/5.0
Disambiguation4/5

Most tools target a distinct resource (worksheet, axis, plot option, layer, legend) with clear boundaries, and the descriptions actively warn where confusion could arise (e.g., plot_option vs axis vs set_options). The only mild overlap is origin_ping vs origin_bridge_status, and origin_worksheet_info vs origin_worksheet_read, both of which are carefully delineated but require reading the details.

Naming Consistency3/5

The dominant pattern is origin_<noun>_<verb> (axis_get, layer_add, worksheet_read), but there are deviations: origin_set_options puts the verb first, origin_graph_info and origin_worksheet_info use 'info' where 'get' would match axis_get, and several tools (ping, labtalk, plot, bridge_status) are bare nouns. The get/set pairs are consistent where they exist, but the mixed conventions prevent a higher score.

Tool Count4/5

Seventeen tools is at the boundary where the set starts to feel heavy, but for a bridge to a full desktop application with worksheet, plotting, and styling concerns, each tool has a discernible role and the count is justified. The escape-hatch design (origin_labtalk) keeps the surface from being even larger.

Completeness4/5

The surface covers the full lifecycle from data reading/writing to plotting, styling, arranging, and exporting, with a clear read/modify/verify pattern throughout. The only notable gap is the lack of any delete/clear operation (no way to remove a plot, layer, or worksheet), though origin_labtalk serves as a viable fallback for these rarer operations.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/Yike-Ye/OriginLab-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server