Expense Tracker MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DANGEROUSLY_OMIT_AUTH | No | For local-only debugging, you can disable proxy auth when running the inspector. |
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
| Capability | Details |
|---|---|
| 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
| Name | Description |
|---|---|
| add_expenseB | Add a new expense and persist it locally. |
| list_expensesB | List expenses with optional category and date filters. |
| get_expense_summaryC | Return totals and category breakdown for matching expenses. |
| delete_expenseB | Delete an expense by its id. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| expense-categories | Full expense category and subcategory catalog. |
| expense-category-names | List of available top-level expense categories. |
TDQS
Scored across 4 tools
Each tool has a distinct purpose: add, delete, list, and summarize expenses. No overlap exists.
All tool names follow a consistent verb_noun pattern (add_expense, delete_expense, get_expense_summary, list_expenses).
With 4 tools, the server covers the core operations of an expense tracker without being too sparse or bloated.
CRUD operations are mostly covered (create, read, delete, list), but an update/edit expense tool is missing, which is a minor gap.