Skip to main content
Glama
misterboe

acinfinity-mcp

by misterboe

Set VPD triggers

set_vpd_triggers
Idempotent

Configure VPD high/low trigger values in kPa for a controller port, with optional activation of VPD mode, to control equipment based on vapor pressure deficit.

Instructions

Configure VPD-mode high/low triggers in kPa (one decimal). Pass only what should change.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
portYesPort number as printed on the controller (1-based).
activateNoAlso switch the port into VPD mode.
vpd_low_kpaNoTurn on below this VPD (kPa).
vpd_high_kpaNoTurn on above this VPD (kPa).
controller_idYesController id (`id` from list_controllers).
user_authorizedNoMust be true. Set only after the user explicitly approved this exact change.
vpd_low_enabledNo
vpd_high_enabledNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
portYes
changedYesAPI keys that were written, in API units.
controller_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already indicate this is a mutating, idempotent, non-destructive operation. The description adds meaningful behavioral detail beyond those annotations by stating the partial-update semantics: only passed fields should change, implying unspecified triggers remain unaffected.

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 front-loaded sentences with zero filler. It communicates the resource, units, precision, and update semantics without repeating anything already present in the schema or annotations.

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 rich schema, clear annotations, and existing output schema, the description is mostly sufficient for an agent to invoke the tool correctly. The notable gap is the lack of sibling differentiation and use-case context, but the core call semantics are clear and well-supported.

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 75%, so the schema already documents most parameters. The description adds value by clarifying the kPa unit, the one-decimal precision for trigger values, and the 'pass only what should change' partial-update model, which helps the agent interpret optional and null-default parameters correctly.

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 ('Configure') and a specific resource ('VPD-mode high/low triggers'), with the added precision of kPa and one-decimal values. This is distinct from sibling tools like set_auto_triggers because it is explicitly VPD-mode focused.

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?

Provides no guidance on when to use this tool versus alternatives such as set_auto_triggers, nor any exclusions or prerequisites. The instruction 'Pass only what should change' is useful once the tool is already selected, but it does not help an agent choose this tool over siblings.

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