Skip to main content
Glama
Svel26

Sigmatek LASAL MCP Server

by Svel26

visu_project

Run VISUDesigner operations to update stations, publish projects, manage text lists, schemes, media, code modules, set datapoint properties, or download to HMI.

Instructions

Run VISUDesigner engine operations: update stations, publish, manage text lists/schemes/media/code modules, set datapoint properties, or download to HMI. These need the VISUDesigner engine — for direct dashboard JSON editing, edit the files in the project directly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flagsNoDownload mode: 0=normal (default), 1=changes only, 2=publish+download changes (download only).
actionYes'apply_changes' loads the project, runs operations, saves, and closes. 'download' pushes the project to an HMI without saving content changes.
lvp_pathNoFull path to the .lvp project file. Omit to auto-detect from the selected project.
connectionNoHMI connection string, e.g. 'TCPIP:192.168.1.100' (download only).
operationsNoOrdered list of VISUDesigner operations (apply_changes only). Each has a 'type' field. Available types: update_all_stations | update_station | publish | add_text_lists | remove_text_lists | add_texts | remove_texts | change_texts | change_component_texts | set_text_list_revisions | set_component_text_list_revisions | csv_export_text_lists | csv_import_text_lists | csv_export_component_text_lists | csv_import_component_text_lists | set_datapoint_properties | set_datatype_properties | add_schemes | remove_schemes | add_scheme_entries | remove_scheme_entries | move_scheme_entries | set_scheme_inputs | set_scheme_properties | set_scheme_entry_properties | add_media_items | remove_media_items | add_code_modules | remove_code_modules | update_property_values | download
add_runtimeNoForce runtime download even if version already matches (download only).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A3.7/5.0
Behavior3/5

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

The description states that apply_changes 'loads the project, runs operations, saves, and closes' and that download 'pushes the project to an HMI without saving content changes', which are useful behavioral details. However, with no annotations provided, it doesn't cover side effects like whether operations are atomic, whether text list revisions auto-increment, or whether a failed operation leaves the project partially modified.

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 a single compact paragraph that front-loads the core purpose and gives the key scoping constraint (apply_changes vs download) before the alternative instruction. It is dense but not bloated given the tool's complexity, and the second sentence adds critical guidance without excess.

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?

For a highly complex tool with a large operations enum and 6 parameters, the description gives the essential action-level guidance and the main alternative path (direct file editing). It lacks details on output/return behavior and error cases, and the schema's nested operation objects carry most of the per-operation semantics, so the description alone is not fully self-sufficient but is reasonable given the schema coverage.

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 covers 100% of parameters with descriptions, but the top-level description adds value by clarifying the key action parameter ('apply_changes' vs 'download'), the lvp_path auto-detection behavior, and the connection string format with the 'TCPIP:' prefix. It also explains that flags are download-only, which is a semantic distinction not fully obvious from the schema alone.

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 names a specific tool (VISUDesigner engine) and a clear verb ('Run VISUDesigner engine operations'), then enumerates the operation categories. It distinguishes itself from direct dashboard JSON editing via the last sentence, though it doesn't name a specific sibling tool.

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 contrasts with 'direct dashboard JSON editing' by saying 'for direct dashboard JSON editing, edit the files in the project directly.' This provides a clear when-to-use/when-not-to-use boundary, though it doesn't list alternative sibling tools by name.

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