Firecent MCP Server
Click on "Deploy 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., "@Firecent MCP ServerShow me my recent transactions"
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.
Firecent MCP Server
MCP (Model Context Protocol) server for Firecent — a personal finance app (Next.js 16 + Prisma 7 + PostgreSQL).
This server lets AI agents (like Hermes) read and manage financial data through Firecent's REST API:
Accounts — list, get, create
Records — list, get, create transactions (income, expense, transfer)
Categories — list, get, create
Query — flexible query endpoint
Info — API key + permissions validation
Architecture
Same pattern as iris-mcp:
firecent-mcp/
├── mcp/
│ ├── index.ts # HTTP entry point (port 3000)
│ ├── tools/ # MCP tool registrations
│ ├── services/ # API service classes
│ ├── schemas/ # Zod input schemas
│ └── utils/ # API client + response helpers
├── package.json
└── tsconfig.jsonRelated MCP server: Expense_Tracker_MCP
Setup
bun installEnvironment variables
Create .env:
API_URL=https://firecent.example.comThe API token is passed by the client via the Authorization: Bearer <token> header (or x-api-key).
Run
# Development (watch mode)
bun run dev
# Production
bun run startThe server runs on port 3000 with:
GET /— health check (HTML)POST /mcp— MCP protocol endpoint (requiresAuthorizationheader)
Available tools
Read tools
firecent_info— validate API key + permissionsfirecent_list_accounts— list all accountsfirecent_get_account— get account by IDfirecent_list_records— list records (paginated)firecent_get_record— get record by IDfirecent_list_account_records— list records for an accountfirecent_list_categories— list all categoriesfirecent_get_category— get category by IDfirecent_query— flexible query
Write tools
firecent_create_record— create transactionfirecent_create_account— create accountfirecent_create_category— create category
License
Private — Lumir Labs.
This server cannot be deployed
Maintenance
Related MCP Connectors
Personal finance for AI agents — onboard, import statements, categorize & budget over MCP.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Query your real net worth, spending, transactions, budgets and portfolio from any MCP client.
Personal-finance workspace for AI agents: accounts, spending, budgets, goals, and investments.
Related MCP Servers
- FlicenseAqualityBmaintenanceA lightweight MCP server for managing personal finances locally. It allows users to log transactions, view summaries, manage categories, and interact with their budget via any MCP-compatible LLM client.12-
- AlicenseNot gradedqualityBmaintenanceA production-grade MCP server for personal finance management, enabling AI agents to add, update, search expenses, manage budgets and credit cards, and generate financial reports.2MIT
- AlicenseNot gradedqualityCmaintenanceA comprehensive MCP server for managing personal finances, enabling users to track expenses, manage budgets, monitor financial goals, and analyze spending patterns through an AI assistant. All data is stored locally in SQLite for complete privacy.15MIT
- AlicenseAqualityBmaintenanceMCP server for Actual Budget that enables AI agents to read accounts, transactions, categories, and budgets, as well as create and update transactions and transfers.111MIT