Finance MCP Server
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., "@Finance MCP ServerShow my account balances."
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.
Finance MCP Server - Vercel Deployment
This folder contains the Finance MCP Server configured for serverless deployment on Vercel.
๐ Structure
vercel-deployment/
โโโ api/
โ โโโ index.py # Main Vercel handler
โ โโโ app_tools.py # MCP tools registration
โ โโโ database.py # Database connection manager
โโโ vercel.json # Vercel configuration
โโโ requirements.txt # Python dependencies
โโโ .env.example # Environment variables template
โโโ README.md # This fileRelated MCP server: Accounting MCP
๐ Quick Deployment
1. Install Vercel CLI
npm install -g vercel2. Set Environment Variables
Create a .env file (copy from .env.example):
DATABASE_URL_PRIVATE="postgresql://user:pass@host/private?sslmode=require"
DATABASE_URL_PUBLIC="postgresql://user:pass@host/public?sslmode=require"3. Deploy to Vercel
cd vercel-deployment
vercelFollow the prompts:
Set up and deploy? Y
Which scope? Select your account
Link to existing project? N (for first deployment)
What's your project's name? finance-mcp-server
In which directory is your code located? ./
Want to override settings? N
4. Add Environment Variables to Vercel
After deployment, add your secrets:
# Add private database URL
vercel env add DATABASE_URL_PRIVATE
# Add public database URL
vercel env add DATABASE_URL_PUBLICOr add them via Vercel Dashboard:
Go to your project settings
Navigate to "Environment Variables"
Add
DATABASE_URL_PRIVATEandDATABASE_URL_PUBLICRedeploy:
vercel --prod
๐ง Configuration
vercel.json
The vercel.json file configures:
Python runtime for serverless functions
Routing to handle MCP endpoints
Environment variables references
Production Deployment
vercel --prodYour MCP server will be available at:
https://your-project.vercel.app/mcp๐ก API Endpoints
Once deployed, your MCP server will be accessible at:
Main MCP endpoint:
https://your-project.vercel.app/mcpHealth check:
https://your-project.vercel.app/
๐ Security
Never commit
.envfile - it's already in.gitignoreUse Vercel environment variables for production secrets
Enable SSL - Vercel provides automatic HTTPS
Database SSL - Ensure Neon databases use
?sslmode=require
๐งช Testing
Local Testing
# Install dependencies
pip install -r requirements.txt
# Run locally
python api/index.pyServer runs at http://localhost:8080
Test MCP Endpoint
curl https://your-project.vercel.app/mcp๐ Features
All 19 financial tools are available:
Account Management
list_accounts- View all accountsget_account_balance- Get specific account balanceget_account_summary- Complete financial summary
Transaction Analysis
list_transactions- List with filterssearch_transactions- Search by merchantget_recurring_transactions- Detect recurring payments
Analytics
get_spending_by_category- Category breakdownget_monthly_trends- Income/expense trendsget_top_merchants- Top spending merchantsget_cashflow_summary- Income vs expenses
Budgeting
create_budget- Create new budgetlist_budgets- View all budgetsget_budget_status- Budget vs actual spending
Utilities
get_available_categories- List categoriesformat_currency- Format amountscalculate_net_worth- Calculate net worth
Security & Policies
get_tool_policy- Get tool access policylist_tool_policies- List all policiesvalidate_tool_access- Validate permissions
๐ Updates
To update the deployment:
# Pull latest changes
git pull
# Navigate to vercel-deployment folder
cd vercel-deployment
# Redeploy
vercel --prod๐ Logs
View logs in real-time:
vercel logsOr view in Vercel Dashboard under your project's "Logs" section.
๐ Troubleshooting
Import Errors
Make sure all Python files are in the api/ directory and dependencies are in requirements.txt.
Database Connection Issues
Verify environment variables are set correctly in Vercel
Check database URLs include
?sslmode=requireEnsure Neon databases are accessible
500 Server Errors
Check Vercel logs: vercel logs or in the dashboard
๐ Resources
๐ Support
For issues or questions:
Check Vercel logs
Review environment variables
Test database connections
Verify Python dependencies
Ready to deploy! ๐
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/Harihara04sudhan/finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server