Personal Finance MCP
@JosueM1109
关于 Personal Finance MCP
Self-hosted, read-only MCP server for personal finance. Connect your banks, credit cards, loans, and brokerage accounts via Plaid and query them from Claude Code in plain English — no third-party aggregator involved.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"personal-finance": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-p",
"8000:8000",
"-e",
"PLAID_CLIENT_ID",
"-e",
"PLAID_SECRET",
"-e",
"PLAID_ENV",
"personal-finance-mcp"
],
"env": {
"PLAID_CLIENT_ID": "<YOUR_PLAID_CLIENT_ID>",
"PLAID_SECRET": "<YOUR_PLAID_SECRET>",
"PLAID_ENV": "production"
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Personal Finance MCP?
A self-hosted, read-only MCP server that connects your banks, credit cards, loans, and brokerage accounts (via Plaid) to Claude Code. It lets you ask questions about your own finances in plain English without a third-party aggregator like Monarch or Mint. This is an unofficial project not affiliated with Plaid Inc.
How to use Personal Finance MCP?
Requires Python 3.11+, a free Plaid Trial plan (up to 10 Items), and an MCP client like Claude Code. Clone the repository, install dependencies, copy .env.example to .env and fill in Plaid credentials. Run uvicorn link_helper:app --port 8765 once per bank to generate access tokens, then run python server.py to serve the server on http://localhost:8000/mcp. Add it to Claude Code with claude mcp add --transport http personal-finance http://localhost:8000/mcp.
Key features of Personal Finance MCP
- Nine read-only tools:
list_accounts,get_balances,get_transactions,search_transactions,get_recurring_transactions,get_liabilities,get_investment_holdings,get_investment_transactions, andget_institutions_status - Self-hosted and single-tenant – one deployment per person
- No third‑party aggregator; connects directly via Plaid
- All tools are read‑only, never mutating financial data
- Credentials stored in environment variables, never on disk
Use cases of Personal Finance MCP
- Ask “What’s my total balance across all accounts?” in Claude Code
- Find transactions over $100 in the last 30 days
- Discover which subscriptions you’re still paying for
- Query how much was spent on groceries last month
- Check which banks need re‑authentication
FAQ from Personal Finance MCP
How is Personal Finance MCP different from Monarch or Mint?
It connects directly via Plaid without a third‑party aggregator; it is self‑hosted and purely read‑only.
What are the prerequisites to run Personal Finance MCP?
Python 3.11+, a free Plaid Trial plan (up to 10 Items), and an MCP client such as Claude Code.
Is Personal Finance MCP affiliated with Plaid?
No, it is unofficial and not affiliated with Plaid Inc.
Where does my financial data reside?
Data is fetched live from Plaid each time a tool is called; tokens are stored in environment variables and never written to disk.
What transport does Personal Finance MCP use?
It serves on HTTP at localhost:8000/mcp and can be added to Claude Code via the HTTP transport.
金融与商务 分类下的更多 MCP 服务器
Crypto Fear & Greed Index MCP Server
kukapayProviding real-time and historical Crypto Fear & Greed Index data
Defeatbeta Api
defeat-betaAn open-source alternative to Yahoo Finance's market data APIs with higher reliability.
kospi-kosdaq-stock-server
dragon1086An MCP server that provides KOSPI/KOSDAQ stock data using FastMCP
Yahoo Finance MCP Server
Alex2Yang97This is a Model Context Protocol (MCP) server that provides comprehensive financial data from Yahoo Finance. It allows you to retrieve detailed information about stocks, including historical prices, company information, financial statements, options data, and market news.
Financial Modeling Prep MCP (Model Context Protocol)
imbenrabiA Model Context Protocol (MCP) implementation for Financial Modeling Prep, enabling AI assistants to access and analyze financial data, stock information, company fundamentals, and market insights.
评论