finnplan-mcp
Allows creating GitHub issues from user feedback. The MCP server's submit_feedback tool automatically creates a formatted GitHub issue with the user's name and email, enabling bug reports and feature requests to be tracked in a GitHub repository.
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., "@finnplan-mcpTransfer $200 from checking to savings"
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.
Eve Finance Stateless MCP Server (Cloudflare Workers + D1)
Stateless Model Context Protocol (MCP) server for personal finance management deployed on Cloudflare Workers with Cloudflare D1 (SQLite) and Drizzle ORM.
🚀 Features
Stateless HTTP Transport: Implements Web Standard Streamable HTTP & SSE (
/mcpand/sse) via@modelcontextprotocol/sdk.Pure MCP-Native Authentication: Register and login directly using MCP tools (
register_user&login_user) without external REST endpoints.15-Minute Self-Contained JWT: Cryptographic token verification with zero database queries required for auth on finance tool calls.
Multi-Tenant Row-Level Security (RLS): Automatically isolates user data via
userIdextracted directly from JWT token payload.11 MCP Tools:
register_user: Register withfirstName,lastName,email, andwhatsappNumber(with country code+...) → returns persistentapiKey& 15-minute JWT.login_user: Authenticate withapiKey→ returns fresh 15-minute JWT.submit_feedback: Submit user feedback, bug reports, or feature requests → automatically creates a formatted GitHub Issue with the user's name and email.manage_wallet: Create, list, update wallets.manage_category: Create, list expense and income categories.manage_budget: Create, list, and compute real-time budget utilization status.record_transaction: Record income/expenses with optional admin fee and automatic atomic wallet balance sync.transfer_funds: Transfer money between wallets with optional admin fees and atomic dual-wallet balance adjustment.update_transaction: Update transactions (amount, fee, wallet, category, budget, date, memo, planned status) with automatic balance reconciliation.list_transactions: Dynamic filtering across date ranges, wallets, categories, budgets, and planning status.financial_summary: Aggregate net worth, income, expense, savings, admin fees, and category breakdowns.
3 MCP Resources:
finance://db/schemafinance://wallets/listfinance://budgets/active
Related MCP server: Firefly III MCP Server - Cloudflare Worker
🔄 Authentication Workflow via MCP
Register User via MCP Tool: Call tool
register_user:{ "firstName": "Budi", "lastName": "Setiawan", "email": "budi@example.com", "whatsappNumber": "+6281234567890" }Response:
{ "userId": "usr_k8f9a2...", "name": "Budi Setiawan", "email": "budi@example.com", "whatsappNumber": "+6281234567890", "apiKey": "fp_live_8f3d9b2c...", "token": "eyJhbGciOi...", "tokenType": "Bearer", "expiresIn": 900 }Call Finance Tools: Set
Authorization: Bearer <token>in your MCP client headers to executemanage_wallet,record_transaction, etc.Re-Login when Token Expires (after 15 minutes): When a token expires, call tool
login_user:{ "apiKey": "fp_live_8f3d9b2c..." }Response: Fresh 15-minute JWT token.
🛠️ Project Setup & Local Development
1. Install Dependencies
npm install2. Run Tests
Runs the complete test suite covering all 8 tools, 3 resources, RLS tenant isolation, input validations, and pure MCP lifecycle:
npm test3. Type Checking & Build Dry-Run
npm run typecheck
npm run build🤖 Coding Agents Quick Start (Claude Code, OpenCode, Pi, OMP)
Connect Eve Finance MCP to your AI coding agents in seconds. For comprehensive configuration and example prompts, see the Coding Agents Setup Guide.
1. Claude Code
claude mcp add --transport http eve-finance https://finnplan-mcp.lutfidmz.workers.dev/mcp2. OpenCode
In opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"eve-finance": {
"type": "remote",
"url": "https://finnplan-mcp.lutfidmz.workers.dev/mcp"
}
}
}3. Pi (pi-mcp-adapter)
# 1. Install adapter
pi install npm:pi-mcp-adapter
# 2. Add to .mcp.json
{
"mcpServers": {
"eve-finance": {
"url": "https://finnplan-mcp.lutfidmz.workers.dev/mcp"
}
}
}4. OMP (Oh My Pi)
In .omp/mcp.json or .mcp.json:
{
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/src/config/mcp-schema.json",
"mcpServers": {
"eve-finance": {
"url": "https://finnplan-mcp.lutfidmz.workers.dev/mcp"
}
}
}⚡ Print Agent Snippets via CLI
npm run agent:snippet [claude|opencode|pi|omp|all]💾 Local D1 Setup & Migrations
Apply migrations to your local D1 database:
# 1. Execute database migrations locally
npx wrangler d1 execute finance_db --local --file=./drizzle/0000_nice_marvel_boy.sql
npx wrangler d1 execute finance_db --local --file=./drizzle/0001_low_stingray.sql
# 2. Start local development server
npm run dev🔌 Connecting with MCP Clients
Endpoint:
http://localhost:8787/mcp(or your deployedhttps://finnplan-mcp.lutfidmz.workers.dev/mcp)Initial Connection: No headers required to call
register_userorlogin_user.Authenticated Calls:
{ "Authorization": "Bearer <YOUR_15_MIN_JWT_TOKEN>" }
🚢 Production Deployment
# 1. Create remote D1 database (if not created yet)
npx wrangler d1 create finance_db
# 2. Set your production JWT secret
npx wrangler secret put JWT_SECRET
# 3. Apply migrations to remote D1 database
npx wrangler d1 execute finance_db --remote --file=./drizzle/0000_nice_marvel_boy.sql
npx wrangler d1 execute finance_db --remote --file=./drizzle/0001_low_stingray.sql
# 4. Deploy worker
npm run deployThis 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.
Related MCP Servers
- Flicense-qualityDmaintenanceA TODO management MCP server using Cloudflare Workers and D1 database, enabling create, read, update, and delete operations on todos.4
- Alicense-qualityCmaintenanceEnables AI tools to interact with Firefly III personal finance manager through the MCP protocol, deployed globally on Cloudflare Workers for low latency.19ISC
- Alicense-qualityBmaintenanceAn incremental financial-data MCP server built on Cloudflare, currently offering a read-only Hono API for accounts, transactions, and analytics with D1 and Drizzle. Future plans include OAuth and MCP integration.7MIT
- Alicense-qualityCmaintenanceEnables AI tools to interact with a Firefly III personal finance instance via MCP protocol, deployed on Cloudflare Workers for low-latency global access.19ISC
Related MCP Connectors
Hosted remote MCP server for YNAB on Cloudflare Workers with OAuth
MCP server for InsForge BaaS — database, storage, edge functions, and deployments
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/lutfi-zain/finnplan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server