Skip to main content
Glama
misterboe

acinfinity-mcp

by misterboe

Compare backup

compare_backup
Read-onlyIdempotent

List all configuration differences between a backup and the current device state per port and automation rule, without making changes. Verify the device is back to its original state after write experiments.

Instructions

Show every configuration field that differs between a backup and the device right now (per port and per automation rule), without changing anything. Use it after write experiments to verify the device is back in its original state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
backup_idYesBackup id from backup_settings.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
changesYes
backup_idYes
new_rulesNoRule ids on the device that the backup does not know.
controller_idYes
missing_rulesNoRule ids present in the backup but gone from the device.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and openWorldHint, and the description reinforces this with 'without changing anything'. It also adds useful behavioral detail about what is compared ('per port and per automation rule') and that it reflects the current device state.

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 behavior is front-loaded and the use case is in the second sentence. Every sentence 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?

With a single required parameter, rich annotations, and an output schema available, the description covers what the tool does, its scope, its side-effect-free behavior, and when to invoke 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?

Schema description coverage is 100%, with backup_id already described as 'Backup id from backup_settings.' The tool description adds no parameter-level detail, but it doesn't need to because the schema carries the meaning.

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 names a specific verb ('Show') and resource ('configuration field that differs between a backup and the device right now'), with explicit scope ('per port and per automation rule'). The no-change disclaimer makes it clearly distinct from mutating siblings like restore_settings and set_* tools.

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 an explicit usage context: 'after write experiments to verify the device is back in its original state.' It doesn't name alternative tools or define when not to use it, but the intended trigger is concrete enough for an agent to select it.

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