Origin Pro MCP Skill / Origin Pro MCP 技能
English
Use this skill when the user wants to create, edit, style, fit, or export Origin Pro worksheets and figures through the origin-pro MCP server.
Scope
- Create and manage Origin projects.
- Create worksheets, write JSON column arrays, read worksheet data, and import numeric CSV files.
- Create scatter, line, line+symbol, bar, histogram, box, contour, pie, bubble, and selected 3D graph types.
- Apply publication-style formatting with one tool call.
- Run linear and nonlinear curve fitting.
- Execute LabTalk for advanced Origin operations.
- Export verified image files from Origin graph pages.
Prerequisites
- Windows with Origin Pro 2020 or newer.
- Windows Python 3.10 or newer.
- Package installed with
python -m pip install -e ..
- MCP server configured as
origin-pro.
- Origin Pro started before COM-dependent operations.
Default Workflow
- Confirm Origin Pro is running.
- Use
new_project only when it is acceptable to clear the current Origin session.
- Load data with
create_worksheet + set_worksheet_data or import_csv_to_worksheet.
- Use
create_graph and add_plot_to_graph.
- Use
apply_publication_style for journal-ready formatting.
- Use
curve_fit when fitting is requested.
- Use
export_graph or export_all_graphs, then verify the returned file path and size.
Tool List
Project:
new_project
save_project
load_project
Worksheet and data:
create_worksheet
set_worksheet_data
get_worksheet_data
import_csv_to_worksheet
list_worksheets
Graphing:
create_graph
add_plot_to_graph
set_axis_labels
set_axis_range
export_graph
export_all_graphs
Styling:
apply_publication_style
set_plot_style
set_graph_font
set_legend
set_tick_style
Analysis:
curve_fit
list_fitting_functions
Advanced:
run_labtalk
get_labtalk_variable
Safety Rules
- Do not include local API keys, token files, Zotero settings, or workspace-specific MCP config in shared outputs.
- Ask before calling
new_project if the user may have unsaved Origin work.
- Treat a successful export as valid only when the tool reports a generated file with non-trivial size.
- If a tool hangs, check whether Origin is showing a modal dialog.
中文
当用户希望通过 origin-pro MCP server 创建、编辑、排版、拟合或导出 Origin Pro 工作表和图像时,使用本技能。
能力范围
- 创建和管理 Origin 项目。
- 创建工作表、写入 JSON 列数组、读取工作表数据、导入数值型 CSV 文件。
- 创建 scatter、line、line+symbol、bar、histogram、box、contour、pie、bubble 和部分 3D 图。
- 一键应用论文图样式。
- 执行线性和非线性曲线拟合。
- 通过 LabTalk 执行高级 Origin 操作。
- 从 Origin 图页导出经过文件校验的图片。
前置条件
- Windows,安装 Origin Pro 2020 或更高版本。
- Windows Python 3.10 或更高版本。
- 已执行
python -m pip install -e .。
- MCP server 已配置为
origin-pro。
- 依赖 COM 的操作前请先启动 Origin Pro。
默认流程
- 确认 Origin Pro 正在运行。
- 只有在可以清空当前 Origin 会话时才调用
new_project。
- 使用
create_worksheet + set_worksheet_data 或 import_csv_to_worksheet 加载数据。
- 使用
create_graph 和 add_plot_to_graph 绘图。
- 使用
apply_publication_style 完成论文图样式。
- 需要拟合时调用
curve_fit。
- 使用
export_graph 或 export_all_graphs 导出,并检查返回的路径和文件大小。
工具清单
项目管理:
new_project
save_project
load_project
数据与工作表:
create_worksheet
set_worksheet_data
get_worksheet_data
import_csv_to_worksheet
list_worksheets
绘图:
create_graph
add_plot_to_graph
set_axis_labels
set_axis_range
export_graph
export_all_graphs
样式:
apply_publication_style
set_plot_style
set_graph_font
set_legend
set_tick_style
分析:
curve_fit
list_fitting_functions
高级:
run_labtalk
get_labtalk_variable
安全规则
- 不要在共享输出中包含本地 API key、token 文件、Zotero 设置或工作区专用 MCP 配置。
- 如果用户可能有未保存的 Origin 工作,调用
new_project 前先确认。
- 只有当导出工具报告生成了非空文件时,才视为导出成功。
- 如果工具卡住,先检查 Origin 是否弹出了模态对话框。
1---2name: origin-pro-mcp-skill3description: Origin Pro MCP Skill / Origin Pro MCP 技能4---5# Origin Pro MCP Skill / Origin Pro MCP 技能67## English89Use this skill when the user wants to create, edit, style, fit, or export Origin Pro worksheets and figures through the `origin-pro` MCP server.1011### Scope1213- Create and manage Origin projects.14- Create worksheets, write JSON column arrays, read worksheet data, and import numeric CSV files.15- Create scatter, line, line+symbol, bar, histogram, box, contour, pie, bubble, and selected 3D graph types.16- Apply publication-style formatting with one tool call.17- Run linear and nonlinear curve fitting.18- Execute LabTalk for advanced Origin operations.19- Export verified image files from Origin graph pages.2021### Prerequisites2223- Windows with Origin Pro 2020 or newer.24- Windows Python 3.10 or newer.25- Package installed with `python -m pip install -e .`.26- MCP server configured as `origin-pro`.27- Origin Pro started before COM-dependent operations.2829### Default Workflow30311. Confirm Origin Pro is running.322. Use `new_project` only when it is acceptable to clear the current Origin session.333. Load data with `create_worksheet` + `set_worksheet_data` or `import_csv_to_worksheet`.344. Use `create_graph` and `add_plot_to_graph`.355. Use `apply_publication_style` for journal-ready formatting.366. Use `curve_fit` when fitting is requested.377. Use `export_graph` or `export_all_graphs`, then verify the returned file path and size.3839### Tool List4041Project:4243- `new_project`44- `save_project`45- `load_project`4647Worksheet and data:4849- `create_worksheet`50- `set_worksheet_data`51- `get_worksheet_data`52- `import_csv_to_worksheet`53- `list_worksheets`5455Graphing:5657- `create_graph`58- `add_plot_to_graph`59- `set_axis_labels`60- `set_axis_range`61- `export_graph`62- `export_all_graphs`6364Styling:6566- `apply_publication_style`67- `set_plot_style`68- `set_graph_font`69- `set_legend`70- `set_tick_style`7172Analysis:7374- `curve_fit`75- `list_fitting_functions`7677Advanced:7879- `run_labtalk`80- `get_labtalk_variable`8182### Safety Rules8384- Do not include local API keys, token files, Zotero settings, or workspace-specific MCP config in shared outputs.85- Ask before calling `new_project` if the user may have unsaved Origin work.86- Treat a successful export as valid only when the tool reports a generated file with non-trivial size.87- If a tool hangs, check whether Origin is showing a modal dialog.8889## 中文9091当用户希望通过 `origin-pro` MCP server 创建、编辑、排版、拟合或导出 Origin Pro 工作表和图像时,使用本技能。9293### 能力范围9495- 创建和管理 Origin 项目。96- 创建工作表、写入 JSON 列数组、读取工作表数据、导入数值型 CSV 文件。97- 创建 scatter、line、line+symbol、bar、histogram、box、contour、pie、bubble 和部分 3D 图。98- 一键应用论文图样式。99- 执行线性和非线性曲线拟合。100- 通过 LabTalk 执行高级 Origin 操作。101- 从 Origin 图页导出经过文件校验的图片。102103### 前置条件104105- Windows,安装 Origin Pro 2020 或更高版本。106- Windows Python 3.10 或更高版本。107- 已执行 `python -m pip install -e .`。108- MCP server 已配置为 `origin-pro`。109- 依赖 COM 的操作前请先启动 Origin Pro。110111### 默认流程1121131. 确认 Origin Pro 正在运行。1142. 只有在可以清空当前 Origin 会话时才调用 `new_project`。1153. 使用 `create_worksheet` + `set_worksheet_data` 或 `import_csv_to_worksheet` 加载数据。1164. 使用 `create_graph` 和 `add_plot_to_graph` 绘图。1175. 使用 `apply_publication_style` 完成论文图样式。1186. 需要拟合时调用 `curve_fit`。1197. 使用 `export_graph` 或 `export_all_graphs` 导出,并检查返回的路径和文件大小。120121### 工具清单122123项目管理:124125- `new_project`126- `save_project`127- `load_project`128129数据与工作表:130131- `create_worksheet`132- `set_worksheet_data`133- `get_worksheet_data`134- `import_csv_to_worksheet`135- `list_worksheets`136137绘图:138139- `create_graph`140- `add_plot_to_graph`141- `set_axis_labels`142- `set_axis_range`143- `export_graph`144- `export_all_graphs`145146样式:147148- `apply_publication_style`149- `set_plot_style`150- `set_graph_font`151- `set_legend`152- `set_tick_style`153154分析:155156- `curve_fit`157- `list_fitting_functions`158159高级:160161- `run_labtalk`162- `get_labtalk_variable`163164### 安全规则165166- 不要在共享输出中包含本地 API key、token 文件、Zotero 设置或工作区专用 MCP 配置。167- 如果用户可能有未保存的 Origin 工作,调用 `new_project` 前先确认。168- 只有当导出工具报告生成了非空文件时,才视为导出成功。169- 如果工具卡住,先检查 Origin 是否弹出了模态对话框。