Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

trigger_rule_group

Manually run a rule group by providing its ID to apply automated financial rules to transactions.

Instructions

Manually run rule group.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.1/5.0
Behavior1/5

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

With no annotations, the description carries the full burden of behavioral disclosure, and it fails. 'Manually run rule group' hints at a mutating action but gives no information about side effects, idempotency, prerequisites, or potential impacts on transactions and budgets.

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

Conciseness2/5

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

The description is a single short sentence, but this is under-specification rather than effective conciseness. It contains no additional context that would earn its place, and key details are missing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutating trigger action with no annotations, no output schema, and no parameter documentation, this description is severely incomplete. An agent cannot determine what the tool does, what the response will be, or whether the operation is safe.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has a single required id parameter with zero description coverage alias, and the description does not even mention that the id refers to the rule group to be triggered. The agent must infer the parameter's meaning solely from the property name.

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 a clear verb ('run') and resource ('rule group'), which distinguishes it from read-only siblings like get_rule_group and list_rule_groups. However, 'run' is somewhat ambiguous—whether it executes all rules, triggers a one-off evaluation, or applies a workflow—so it is not fully precise.

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?

No guidance is provided on when to use this tool versus alternatives. It does not mention that this is a manual action typically triggered when automatic rule execution is disabled, nor does it differentiate from the sibling trigger_export or other rule actions.

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