Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

list_budget_limits

Retrieve all monetary limits assigned to a specific budget, providing clear visibility into spending caps for effective financial planning.

Instructions

List monetary limits for a budget.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

B3.1/5.0
Behavior2/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. It implies a read-only operation via the verb 'List,' but does not disclose response format, pagination behavior, error conditions, authentication requirements, or how the required id relates to the budget. This is minimal behavioral transparency.

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?

The description is a single, compact sentence with no wasted words. It front-loads the verb and resource, making the core purpose immediately clear.

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

Completeness3/5

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

For a simple list operation with one required parameter, the description is minimally viable: an agent knows it lists budget limits and that the id likely identifies a budget. But without annotations, an output schema, or detail on return values and pagination, it falls short of being genuinely complete.

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 coverage is 0%, so the description must compensate. 'For a budget' implies the required 'id' parameter is a budget identifier, which adds meaning beyond the bare string field. However, this is indirect and does not explicitly confirm whether the id refers to a budget, a budget limit, or something else.

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 clearly states the operation ('List') and the resource ('monetary limits for a budget'), which is specific and understandable. However, it does not explicitly differentiate itself from siblings like list_budgets or create_budget_limit, relying on naming and context rather than direct contrast.

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 gives no guidance on when to use this tool versus alternatives such as list_budgets or the create/delete budget limit tools. There is no mention of prerequisites, exclusions, or scenarios where this tool is preferred, so an agent must infer usage from the tool name and generic phrasing.

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