Skip to main content
Glama
ninetails-io

gnucash-mcp

get_upcoming_transactions

Read-only

List scheduled transactions due within a date window to see upcoming bills, with pagination and optional structured JSON output.

Instructions

Get scheduled transactions due within a time window.

This is the "what bills are coming up?" query. Leads with a Showing X-Y of Z upcoming transactions (date range) line, soonest first. Page with offset; limit=0 returns the count only.

Args: days: Look ahead window in days. Default 14. verbose: If false (default), compact text output — optimized for reading and token efficiency. If true, structured JSON, for when you need machine-readable fields rather than a report. limit: Page size (default 50, max 250). 0 = count only. offset: 0-indexed first row to return (default 0).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
offsetNo
verboseNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.2

TDQS

A4.8/5.0
Behavior5/5

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

Beyond the readOnlyHint/openWorldHint annotations, it discloses the output prefix, soonest-first ordering, paging via offset, limit=0 count-only behavior, and the verbose compact-vs-JSON output modes. This is rich, non-obvious behavioral context.

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 front-loaded with the core purpose, followed by a short behavioral summary and a compact args list. Every sentence adds useful information with no filler.

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

Completeness5/5

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

For a read-only paginated query with an output schema, the description covers output format, ordering, paging, count-only mode, and verbose behavior. The output schema supplies the machine-readable structure, so nothing essential is missing.

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

Parameters5/5

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

Schema description coverage is 0%, so the description carries full responsibility for parameters. It clearly documents days, verbose, limit, and offset, including defaults, special values, and output implications for each.

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?

Opens with a specific verb and resource: 'Get scheduled transactions due within a time window.' The framing as the 'what bills are coming up?' query further distinguishes it from siblings like list_transactions and list_scheduled_transactions.

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 gives clear intended use: 'what bills are coming up?' queries. It does not explicitly name alternative tools or exclusion conditions, but the use-case framing is enough to guide selection.

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