Skip to main content
Glama
anshgautam-github

Expense Tracker MCP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
EXPENSE_TRACKER_DB_PATHNoPath to the SQLite database file.<project root>/expenses.db
EXPENSE_TRACKER_EXPORTS_DIRNoDirectory where CSV exports are written.<project root>/exports/
EXPENSE_TRACKER_CATEGORIES_PATHNoPath to the categories JSON file.<project root>/categories.json

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
add_expenseB

Add a new expense entry to the database.

get_expenseA

Fetch a single expense entry by id.

list_expensesA

List expense entries within an inclusive date range.

update_expenseA

Update one or more fields of an existing expense. Only the fields you pass are changed; everything else stays as-is.

delete_expenseA

Delete an expense entry by id.

summarizeA

Summarize expenses by category within an inclusive date range.

export_expensesA

Export expenses within an inclusive date range to a CSV file on disk and return its path.

list_categoriesA

Return the full category -> subcategory list as a tool call (mirrors the expense://categories resource). Use this to check valid values before calling add_expense or update_expense.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
categoriesServe the category/subcategory reference data, read fresh each call.

TDQS

A4/5.0

Scored across 8 tools

Disambiguation5/5

Each tool maps to a clearly distinct operation: expense CRUD, category listing, summarization, and CSV export. There is no functional overlap between list_expenses and summarize because one returns raw entries and the other aggregates them.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern (add_expense, get_expense, list_expenses, update_expense, delete_expense, export_expenses, list_categories). The lone 'summarize' deviates by omitting a noun object, which is a minor inconsistency but does not harm readability.

Tool Count5/5

Eight tools is well-scoped for an expense tracker: the full expense lifecycle is covered with ADD/GET/LIST/UPDATE/DELETE, supplemented by category lookup, summary, and export. Each tool earns its place without redundancy.

Completeness5/5

The tool set provides complete CRUD coverage for expenses along with useful supporting operations like summarization, CSV export, and category validation. There are no obvious dead ends for the stated domain, and category management appears intentionally external.

Maintenance

ActivityMaintained
ResponsivenessNo issues