Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

delete_budget_limit

Delete a specific budget limit to remove its spending cap, freeing the budget for updated financial planning.

Instructions

Delete a budget limit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limit_idYes
budget_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.4/5.0
Behavior2/5

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

No annotations are present, so the description carries full responsibility. 'Delete' implies a destructive action, but it does not disclose what happens if the limit does not exist, whether the deletion is idempotent, or if special permissions are required. The description is minimal and leaves the behavioral profile unspecified.

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 extremely short and front-loaded with the action, but it is under-specified rather than concisely informative. It is appropriately sized for a trivial tool, but the brevity results in no structural benefit beyond the core statement.

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?

Given that this is a mutation tool with two required parameters and no annotations, output schema, or parameter documentation, an agent would struggle to call it correctly without additional context. The description omits return behavior, error cases, and any relationships between parameters.

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?

Schema description coverage is 0%, meaning the schema provides no parameter descriptions. Both budget_id and limit_id are required, but the description does not explain their relationship or format. Since coverage is low, the description should compensate but adds zero parameter semantics.

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 specific verb (delete) and resource (budget limit), clearly indicating the operation. It differentiates from sibling tools like delete_budget and delete_account by naming the exact entity, though it does not explicitly contrast with any alternatives.

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 other delete tools or how to determine the correct budget_id and limit_id. The description does not mention any prerequisites, context, or alternative tools.

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