Skip to main content
Glama
naveen6768

Expense Tracker MCP

by naveen6768

expense_tracker_mcp

This project uses FastMCP 3.2.0.

Why your commands failed

  • fastmcp: command not found The CLI is only installed inside this project's virtual environment, so it is not available from your base shell unless you activate .venv or run it through uv.

  • uv run fastmcp dev main.py In FastMCP 3.x, dev is a command group. You must use a subcommand such as inspector.

  • uv run fastmcp dev inspector That form needs a server spec or a fastmcp.json. This repo now includes fastmcp.json, so auto-detection works.

Related MCP server: expense-mcp

Working commands

Run the server directly:

uv run fastmcp run

Inspect the server:

uv run fastmcp inspect

Open MCP Inspector in dev mode:

uv run fastmcp dev inspector

If the Inspector UI shows Error Connecting to MCP Inspector Proxy - Check Console logs, open the exact URL printed in the terminal. FastMCP 3.x starts the proxy with a per-run session token, and the Inspector page must include that token or the proxy config request will be rejected.

For local-only debugging, you can disable proxy auth:

DANGEROUSLY_OMIT_AUTH=true uv run fastmcp dev inspector

You can still pass the file explicitly if you want:

uv run fastmcp run main.py
uv run fastmcp inspect main.py
uv run fastmcp dev inspector main.py

MCP

Available Tools

4 tools
add_expenseB

Add a new expense and persist it locally.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYes
categoryYes
descriptionNo
expense_dateNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
amountYes
categoryYes
descriptionYes
expense_dateYes
created_atYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations, so description must disclose behavioral traits. Only states 'persist locally' but lacks detail on side effects, error handling, or whether it returns the created expense.

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?

One concise sentence without redundancy. Could include more parameter guidance but remains efficient.

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?

Simple tool with output schema, but missing parameter descriptions. Adequate but not thorough; e.g., does not mention date format or amount constraints.

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

Parameters1/5

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

Schema coverage 0%, but description provides no extra meaning for any of the 4 parameters (amount, category, description, expense_date).

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?

Clearly states verb 'add' and resource 'expense', with 'persist it locally' distinguishing from potential in-memory operations. Different from siblings delete, list, and summary.

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?

Implied usage for creating a new expense, but no explicit when-to-use or when-not-to-use compared to siblings.

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

delete_expenseB

Delete an expense by its id.

ParametersJSON Schema
NameRequiredDescriptionDefault
expense_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
deletedYes
expense_idYes
remaining_expense_countYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It indicates deletion (destructive) but does not disclose side effects, permissions needed, reversibility, or consequences for associated 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 concise sentence that front-loads the action. It is efficient but could be slightly more structured without becoming verbose.

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 simple id-based deletion tool with an output schema, the description is adequate but incomplete. It lacks prerequisites, error conditions, and output expectations. With no annotations, more context would be beneficial.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It mentions 'by its id' but does not explain the expense_id parameter's format, origin, or constraints beyond what the schema states (string).

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 clearly states the action (delete) and resource (expense) and specifies the identifier (by its id). It distinguishes from sibling tools: add_expense creates, get_expense_summary summarizes, list_expenses lists.

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?

No explicit guidance on when to use this tool versus alternatives. The description only implies use when an expense id is available but does not provide context like prerequisites or when not to use.

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

get_expense_summaryC

Return totals and category breakdown for matching expenses.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNo
start_dateNo
end_dateNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
total_amountYes
category_breakdownYes
filtersYes

TDQS

C2.4/5.0
Behavior2/5

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

No annotations provided, and the description is minimal. It does not disclose any behavioral traits such as side effects, read-only nature, or rate limits. The agent is left to assume it's safe and stateless.

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

Conciseness3/5

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

The description is a single concise sentence, which is efficient for a simple tool. However, it is too terse and could benefit from including parameter details or usage notes without sacrificing brevity.

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

Completeness1/5

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

With 3 undocumented parameters and no annotations, the description fails to provide sufficient context for correct invocation. The output schema exists but the description should at least mention filtering behavior or return structure.

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

Parameters1/5

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

Schema coverage is 0% and the description does not explain any parameters. The agent receives no help understanding the formatting of dates or the expected category values beyond the field name.

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 clearly states it returns totals and category breakdown for matching expenses, which distinguishes it from sibling tools like add_expense and delete_expense. However, list_expenses might also provide totals, but the focus on category breakdown differentiates it.

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?

No guidance on when to use this tool versus alternatives like list_expenses or when not to use it. Lacks context about prerequisites or typical use cases.

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

list_expensesB

List expenses with optional category and date filters.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNo
start_dateNo
end_dateNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided. The description does not disclose behavior such as pagination, sorting, or output format. Despite an output schema existing, the description lacks any 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.

Conciseness4/5

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

The description is a single concise sentence that front-loads the core purpose. However, it may be too brief and could benefit from slightly more detail.

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?

Given the existence of an output schema, the description is minimally complete for a simple list tool. However, it lacks context on usage and behavior, making it adequate but not comprehensive.

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

Parameters2/5

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

Schema description coverage is 0%. The description loosely mentions 'category and date filters' corresponding to the parameters, but adds no semantic detail like date format or allowed values.

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 clearly states the action ('List expenses') and the resource, and mentions optional filters. It distinguishes from siblings like add_expense, delete_expense, and get_expense_summary.

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?

The description implies use for listing with filters, but does not provide explicit guidance on when to use this tool versus alternatives like get_expense_summary, or when not to use it.

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

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a distinct purpose: add, delete, list, and summarize expenses. No overlap exists.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (add_expense, delete_expense, get_expense_summary, list_expenses).

Tool Count5/5

With 4 tools, the server covers the core operations of an expense tracker without being too sparse or bloated.

Completeness4/5

CRUD operations are mostly covered (create, read, delete, list), but an update/edit expense tool is missing, which is a minor gap.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    A Model Context Protocol server that helps track expenses and calculate reimbursements for social events, making it easy to settle balances between friends.
    11
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    Personal expense tracker MCP server that enables tracking expenses, income, budgets, and savings goals through natural language.
    10
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    A powerful SQLite-backed expense tracking server built with the Model Context Protocol (MCP). This server allows AI agents (like Claude) to manage your personal finances by adding, deleting, and listing expenses directly from your chat interface.
  • F
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server for tracking personal expenses. This server provides tools to add, list, and summarize expenses, utilizing a local SQLite database for storage.
    3

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/naveen6768/MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server