Skip to main content
The core read surface of Breadbox. Agents query transactions, aggregate spending, and read activity context through the tools on this page. All amounts use the Plaid sign convention: positive = money out, negative = money in. See Conventions for the full cross-cutting rules.

query_transactions

Returns a paginated list of transactions matching the supplied filters. This is the workhorse read tool — almost every agent session goes through it. Scope: Read Mirrors: GET /api/v1/transactions

Parameters

string (YYYY-MM-DD)
Start date inclusive.
string (YYYY-MM-DD)
End date exclusive.
string
Filter to a single account (UUID or short ID).
string
Filter to all accounts owned by a family member. Attribution-aware — includes transactions attributed to this user via account links.
string
Filter by category slug. Parent slugs include all children.
number
Minimum amount (positive = debit, negative = credit).
number
Maximum amount.
boolean
Filter by pending status. Omit to return both.
Case-insensitive substring match on name and merchant_name. Comma-separate values for OR.
string
default:"contains"
contains, words, or fuzzy.
Exclude transactions whose name or merchant matches this text.
array of strings
Tags the transaction must have (AND). The review queue is ["needs-review"].
array of strings
Tags the transaction must have at least one of (OR).
integer
default:"50"
Max 500.
string
Opaque pagination cursor from a previous response. Only valid with sort_by=date.
string
default:"date"
date, amount, or provider_name.
string
default:"desc"
desc or asc.
string
Comma-separated fields or aliases (minimal, core, category, timestamps). See Conventions. id is always included.

Example input


count_transactions

Returns the count of transactions matching the filters, without fetching any rows. Agents use this as a cheap pre-flight to decide whether to paginate or narrow filters. Scope: Read Mirrors: GET /api/v1/transactions/count

Parameters

Accepts the same filters as query_transactions except cursor, limit, sort_by, sort_order, and fields.

Example input

Example output


transaction_summary

Returns aggregated transaction totals grouped by category, month, week, day, or category × month. Replaces the need to paginate through every transaction for spending analysis. Amounts follow the Plaid convention — positive = money out. Scope: Read Mirrors: GET /api/v1/transactions/summary

Parameters

string
required
One of category, month, week, day, category_month.
string (YYYY-MM-DD)
Defaults to 30 days ago.
string (YYYY-MM-DD)
Defaults to today.
string
Filter by account.
string
Filter by family member (attribution-aware).
string
Filter by primary category before aggregating.
boolean
default:"false"
Include pending transactions.

Example input


list_annotations

Returns the activity timeline for a single transaction: comments, tag adds/removes, rule applications, and category sets. Ordered by created_at ascending. Use this to reconstruct “what happened to this transaction and when” before making further changes. Each row carries a generic kind plus an action for the specific event, so you can branch on the action without parsing the kind string: Scope: Read

Parameters

string
required
UUID or short ID of the transaction.
string[]
Optional kind filter. Any of comment, rule, tag, category. Empty (default) returns the full timeline. Pass ['comment'] for the comment-only view (replaces the deprecated list_transaction_comments); pass ['tag'] for both add and remove tag events; pass ['comment','tag','category'] to skip rule-application churn.Only the generic kinds above are accepted at the MCP boundary — the underlying DB-level values (tag_added, tag_removed, rule_applied, category_set) will be rejected with an invalid kind error.

Example input

Comment-only view (replaces list_transaction_comments):
All tag events (added and removed):
kind carries the generic event family (comment, rule, tag, category) and action carries the specific event (added, removed, set, applied). Comment rows omit action because there is only one event. Actor identity is split across actor_type (user / agent / system), actor_name, and optional actor_id. When a write tool passed a session_id, it’s echoed here so you can group events by session. Rule applications set rule_id; tag events set tag_id.
Last modified on June 25, 2026