Skip to main content
Glama

intuit_controller_snapshot

Destructive

Captures a snapshot of the controller by processing a free-text objective and optional JSON inputs. Returns the controller state through the domain-agent dispatcher.

Instructions

Run the intuit domain agent action controller_snapshot.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already mark destructiveHint=true and readOnlyHint=false, and the description adds useful scoping context about JWT, tenant, and company scope. It does not contradict the annotations, but it does not describe side effects, state changes, or what the action does beyond routing.

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

Conciseness3/5

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

The description is short, front-loaded, and free of filler, and the Args section is compact. However, most of it is generic dispatcher boilerplate that could apply to any domain-agent action, so it earns little beyond basic structure.

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?

For a two-parameter action dispatcher with opaque domain semantics, the description is thin: it omits when to use it, what controller_snapshot accomplishes, valid input structure, and side-effect implications beyond the annotations. The routing and scope line is useful but not 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?

Schema description coverage is 0%, so the description must carry parameter meaning. It defines message as 'free-text objective' and inputs as 'Optional JSON string', but gives no domain-specific shape, keys, or examples for controller_snapshot, leaving valid structured inputs opaque.

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 an explicit operation: 'Run the intuit domain agent action controller_snapshot', so the verb and resource are specific. It is clear that this invokes a named domain-agent action, though it does not explain what controller_snapshot actually does or differentiate it from sibling intuit_* actions.

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 alternatives such as intuit_controller_review, intuit_reconcile_payments, or intuit_execute_approved_action. The description only explains routing and scope, not selection criteria.

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

Deploy Server

Other Tools