Expense Tracker MCP Proxy
A proxy server that connects to a remote FastMCP expense tracker, enabling users to add, list, update, delete, and summarize expenses with categories and date ranges through natural language.
README
Expense Tracker MCP Proxy for Remote Server
A Model Context Protocol (MCP) proxy server that connects to a remote expense tracker FastMCP cloud server and exposes its tools locally.
Note: This is a proxy server only. It connects to a remote FastMCP cloud URL and forwards requests to the actual expense tracking implementation. The source code for the expense tracking functionality is available at: expense-tracker-remote-mcp-server
Features
This proxy server:
- Connects to the remote FastMCP server at
https://chronic-scarlet-urial.fastmcp.app/mcp - Automatically discovers and exposes all tools available on the remote server
- Forwards all tool calls to the remote server
- Provides transparent proxying with error handling
- Handles Server-Sent Events (SSE) responses from the FastMCP server
- Acts as a local stdio interface to the remote expense tracker implementation
Remote Server Tools
The remote FastMCP server provides an Expense Tracker with 5 tools:
- add_expense: Add a new expense with date, amount, category, subcategory, and notes
- list_expenses: List expenses with optional filtering by category and date range
- update_expense: Update an existing expense
- delete_expense: Delete an expense
- summarize_expenses: Get expense summaries grouped by category
Installation
- Install dependencies:
pip install -e .
Or install manually:
pip install mcp aiohttp
Usage
Run the server:
python main.py
The server communicates via stdio and follows the Model Context Protocol specification.
Configuration
To use this server with an MCP client (like Claude Desktop), add it to your client configuration:
{
"mcpServers": {
"bhakti-server-proxy": {
"command": "python",
"args": ["d:\\Python Projects\\Proxy-server\\main.py"]
}
}
}
Or with the full Python path:
{
"mcpServers": {
"bhakti-server-proxy": {
"command": "C:\\Users\\kulsu\\AppData\\Local\\Programs\\Python\\Python314\\python.exe",
"args": ["d:\\Python Projects\\Proxy-server\\main.py"]
}
}
}
Development
The server is built using the mcp Python library and implements:
- Tool listing from remote server
- Tool execution forwarding to remote server
- Async stdio communication
- Server-Sent Events (SSE) handling
Testing
Test the connection to the remote server:
python test_proxy.py
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.