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.
Server Config
{
"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"
}
}
}
}