Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

delete_rule

Deletes a specific rule in Firefly III by its ID to remove outdated or unwanted automation rules.

Instructions

Delete a rule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

D1.7/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the action and gives no information about irreversibility, required permissions, cascading effects, or success/failure behavior, offering essentially zero transparency beyond the tool name.

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 extremely short and economical, but this brevity reflects under-specification rather than purposeful conciseness. It fails to earn its place by providing information that structured metadata does not already convey.

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?

This is a destructive operation with one parameter, no annotations, and no output schema, yet the description says nothing about expected effects, error handling, or response behavior. The definition is not complete enough for an agent to call the tool confidently and interpret the result.

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% and the description does not mention 'id' at all. An agent can infer from the tool name that 'id' refers to a rule identifier, but the description adds no explicit semantic, format, or usage detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Delete a rule.' states the action and resource, but it matches the tool name verbatim and adds no new semantic content. It distinguishes from siblings only implicitly through the verb 'delete', which is already present in the name, making it essentially a tautology.

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?

The description provides no guidance on when to use delete_rule versus its siblings like get_rule, list_rules, create_rule, or update_rule. There is no mention of prerequisites, conditions under which deletion makes sense, or alternatives.

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