Skip to main content
Glama
fabianonetto

Universal Firefly III AI Bridge

by fabianonetto

list_bills

Retrieve every bill from your Firefly III account to review recurring expenses, due dates, and payment history.

Instructions

List all bills.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the burden and does signal a read-only intent via the verb 'list.' However, it does not disclose whether the response is a simple array, whether pagination/ordering exists, or any other operational behavior, leaving a gap for an agent.

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 sentence with no filler, starting directly with the verb and resource. Every word contributes, and it is appropriately sized for a zero-parameter operation.

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 zero-parameter list tool, the core call intent is clear, but the lack of an output schema and annotations means an agent still has no information about the shape or scope of the returned data beyond the word 'bills.' This is adequate but not fully complete.

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

Parameters4/5

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

The input schema has zero properties and 100% coverage, so there are no parameter semantics to document. The description correctly adds no parameter information; this matches the baseline for a parameterless tool.

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 uses a specific verb and resource ('List all bills'), so an agent knows the operation and the target. It does not explicitly differentiate from sibling tools like list_accounts or list_categories, though the distinct resource name makes confusion unlikely.

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 about when to use this tool versus alternatives or about any intended workflow. With no get_bill sibling, an agent must infer that list_bills is the read path, but the description itself gives no usage context.

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