Skip to main content
Glama
przbadu

Firefly III MCP Server

by przbadu

Update Firefly III Transaction

firefly_update_transaction
Idempotent

Update Firefly III transactions by modifying specific fields. Retrieve current values first, then change descriptions, amounts, dates, accounts, or categories.

Instructions

Update an existing transaction. Only provide the fields you want to change.

First use firefly_get_transaction to retrieve the current values, then pass only the changed fields here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesTransaction group ID to update
descriptionNoUpdated description
dateNoUpdated date (YYYY-MM-DD)
amountNoUpdated amount
source_nameNoUpdated source account name
destination_nameNoUpdated destination account name
category_nameNoUpdated category name
budget_nameNoUpdated budget name
tagsNoUpdated tags
notesNoUpdated notes
Behavior4/5

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

Annotations indicate idempotentHint=true and destructiveHint=false, establishing safety. The description adds crucial behavioral context that this is a partial update operation ('Only provide the fields you want to change') and mandates a read-before-write workflow, which is essential for correct usage.

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?

Two sentences with zero waste. The first sentence states the action and constraint; the second provides the workflow prerequisite. Information is front-loaded and every word earns its place.

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

Completeness4/5

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

For a 10-parameter update tool with safety annotations covering idempotency and destructiveness, the description adequately explains the partial update pattern and prerequisite workflow. It appropriately omits return value details (no output schema exists), though it could briefly mention success/failure signaling for full completeness.

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?

While the schema has 100% description coverage, the description adds essential semantic meaning by clarifying that parameters are optional partial updates ('Only provide the fields you want to change'). This explains the PATCH-like behavior that isn't evident from the schema alone, where all non-id fields appear optional but the semantic intent isn't stated.

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

Purpose5/5

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

The description opens with the specific action 'Update an existing transaction', clearly identifying both the verb (update) and resource (transaction). The word 'existing' effectively distinguishes it from the sibling firefly_create_transaction tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit workflow guidance: 'First use firefly_get_transaction to retrieve the current values, then pass only the changed fields here.' This establishes the prerequisite step and partial update pattern. However, it lacks explicit 'when not to use' guidance (e.g., contrasting with delete_transaction or create_transaction).

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/przbadu/firefly-iii-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server