Skip to main content
Glama
Arjit005

Expense Tracker MCP

by Arjit005

Add Expense

add_expense

Log a new expense with amount, category, subcategory, date, and note to track spending accurately.

Instructions

Add a new expense entry to the database.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate in YYYY-MM-DD format (default: today)
noteNoOptional note
amountNoExpense amount
categoryNoExpense category
subcategoryNoOptional subcategory

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure, but it only says it writes a new entry to the database. It doesn't mention permissions, amount validation, idempotency, error conditions, or what happens to other data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with no filler and a front-loaded action. It is concise, though the space could have been used to add a bit more behavioral or selection context.

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 five-parameter mutation tool with no annotations and no output schema, one sentence is adequate but thin. The schema covers parameter meaning, but the description omits return/effect context, validation behavior, and differentiation from add_credit, leaving several gaps.

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%, and each parameter already has a type, default, and description. The tool description adds no additional parameter meaning beyond the schema, so the baseline 3 applies.

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 says specifically 'Add a new expense entry to the database,' which conveys the verb and resource. It doesn't explicitly mention sibling tools like add_credit or edit_expense, so it stops just short of full sibling 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 guidance on when to call add_expense versus edit_expense, delete_expense, or add_credit. The description only states the operation, leaving all selection context to inference.

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