Skip to main content
Glama
PK-SANGAMESWAR

Expense Tracker MCP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
add_expenseC

Add a new expense to the database.

list_expensesC

List all expenses in the database between start_date and end_date (inclusive).

summarizeB

Summarize expenses by category within the inclusive date range. Returns list of {"category": ..., "total": ...} ordered by total descending.

edit_expenseC

Edit an existing expense in the database.

delete_expenseC

Delete an expense from the database.

add_creditC

Add credit to the user's account. By default updates 'default' user. Returns new credit amount.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
categories

TDQS

A3.5/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose with no ambiguity: adding credit, adding/editing/deleting expenses, listing expenses, and summarizing expenses. The descriptions clearly differentiate between credit operations, expense CRUD operations, and analytical functions.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case naming: add_credit, add_expense, delete_expense, edit_expense, list_expenses, summarize. The single verb 'summarize' without a noun is appropriate for its analytical function and maintains readability.

Tool Count5/5

Six tools is well-scoped for an expense tracking server, covering core operations without bloat. Each tool earns its place: credit management, full expense CRUD, listing, and summarization provide complete workflow coverage.

Completeness4/5

The tool surface covers most essential expense tracking operations including credit management and expense lifecycle. A minor gap exists in credit operations (no edit/delete credit tools), but agents can work around this limitation effectively.

Maintenance

ActivityInactive
ResponsivenessNo issues