Skip to main content
Glama
AzeemWaqarRao

expense-tracker-mcp

add_recurring

Add a monthly recurring expense that automatically posts on your chosen day each month, tagged as recurring; if the day has passed, it posts immediately, and short months use their last day.

Instructions

Add a monthly recurring expense (rent, internet, subscriptions).

It posts itself on day_of_month each month, tagged 'recurring'. A day past the end of a short month posts on that month's last day. If the day has already passed this month, it posts immediately.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYes
categoryNo
merchantNo
day_of_monthYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it explains that the expense posts on day_of_month, is tagged 'recurring', handles short months by using the last day, and posts immediately when the day has passed. It does not clarify whether immediate posting also still schedules future recurrences, which is a minor ambiguity.

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 compact and front-loaded. The first sentence states the core purpose; the following sentences add only high-value behavioral details. No filler or repetition.

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?

The description covers the main purpose, recurrence behavior, tagging, and edge cases. An output schema exists, so return values do not need to be described. It could be more complete by naming the one-time alternative explicitly, but the essential invocation context is present.

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?

The schema has 0% parameter description coverage, so the description must compensate. It adds meaningful semantics for day_of_month with scheduling edge cases, but amount, category, and merchant are only addressed by their self-explanatory names. No constraints, units, or formatting are provided for those parameters.

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 leads with a specific verb and resource: "Add a monthly recurring expense," with clarifying examples (rent, internet, subscriptions). This clearly separates it from one-time expense tools like add_expense and add_expenses in the sibling list.

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

Usage Guidelines3/5

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

Usage context is implied: this is for monthly recurring expenses. However, there is no explicit statement of when not to use it or which sibling should be chosen instead, such as add_expense for one-time costs. The guidance is useful but left to inference.

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