Expense Tracker MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Expense Tracker MCPAdd a $45 dinner at Olive Garden to my food category"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
expense_tracker_mcp
This project uses FastMCP 3.2.0.
Why your commands failed
fastmcp: command not foundThe CLI is only installed inside this project's virtual environment, so it is not available from your base shell unless you activate.venvor run it throughuv.uv run fastmcp dev main.pyIn FastMCP3.x,devis a command group. You must use a subcommand such asinspector.uv run fastmcp dev inspectorThat form needs a server spec or afastmcp.json. This repo now includesfastmcp.json, so auto-detection works.
Related MCP server: expense-mcp
Working commands
Run the server directly:
uv run fastmcp runInspect the server:
uv run fastmcp inspectOpen MCP Inspector in dev mode:
uv run fastmcp dev inspectorIf 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 inspectorYou 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.pyMCP
Available Tools
4 toolsadd_expenseB
Add a new expense and persist it locally.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | ||
| category | Yes | ||
| description | No | ||
| expense_date | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| amount | Yes | |
| category | Yes | |
| description | Yes | |
| expense_date | Yes | |
| created_at | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| expense_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| deleted | Yes | |
| expense_id | Yes | |
| remaining_expense_count | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | ||
| start_date | No | ||
| end_date | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| total_amount | Yes | |
| category_breakdown | Yes | |
| filters | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | ||
| start_date | No | ||
| end_date | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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
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.
Maintenance
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
Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.
Model Context Protocol server for Studex tools, notifications, and profile integrations
Log, query, and edit expenses, budgets, and accounts in Manilo from any MCP-compatible AI assistant.
Model Context Protocol server for todo.vu task management and time tracking.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that helps track expenses and calculate reimbursements for social events, making it easy to settle balances between friends.11Apache 2.0
- AlicenseAqualityDmaintenancePersonal expense tracker MCP server that enables tracking expenses, income, budgets, and savings goals through natural language.10MIT
- FlicenseNot gradedqualityDmaintenanceA 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.
- FlicenseAqualityDmaintenanceA 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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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