Skip to main content
Glama
s-stefanov

actual-mcp

spending-by-payee

Rank payees by total money spent or received, returning amounts in integer cents. Filter by date range or account to see where your budget goes.

Instructions

Rank payees by how much money was spent with (or received from) each one. Returns JSON; amounts are integer cents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitYesMaximum number of payees to list
endDateNoEnd date in YYYY-MM-DD format
accountIdNoRestrict the report to a single account
startDateNoStart date in YYYY-MM-DD format
includeIncomeYesReport income received instead of money spent

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.13.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden, and it does disclose the return format (JSON) and unit (integer cents), which is genuinely useful. However, it says nothing about permissions, sorting order, pagination, or how ties/defaults behave, leaving substantial gaps for a report tool.

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 tight sentences with zero filler, and the core purpose is front-loaded before the return-format note. Every clause earns its place.

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 5-parameter report tool with no output schema and no annotations, the description covers purpose and the amount unit but not the shape of the ranked output (fields per payee, ordering, tie-breaking). It is adequate but not complete given the absence of structured return documentation.

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 description coverage is 100%, so every parameter is already documented. The description adds only the income-direction nuance ('received from') and the cents unit, which are marginal additions over the schema - consistent with the baseline 3 when the schema does the heavy lifting.

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 gives a specific verb (rank) and resource (payees) plus the metric (money spent/received), which clearly separates it from get-payees (list) and spending-by-category (grouped differently). It does not name any sibling explicitly, so it falls short of full differentiation.

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?

There is no statement of when to use this tool versus alternatives such as spending-by-category or get-payees, and no prerequisites or exclusions are mentioned. Usage can only be inferred from the resource name.

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