Skip to content
Cursor

personal finance mcp for Cursor

io.github.josuem1109/personal-finance-mcp

Self-hosted, read-only MCP server that connects your banks and investments via Plaid.

client:Cursor transport:stdio runtime:oci

Install personal finance mcp in Cursor

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

Held in this page only — never stored, logged, or sent anywhere but back to your screen.

{
  "mcpServers": {
    "personal-finance-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/josuem1109/personal-finance-mcp:1.0.0"
      ],
      "env": {
        "PLAID_CLIENT_ID": "<PLAID_CLIENT_ID>",
        "PLAID_SECRET": "<PLAID_SECRET>",
        "PLAID_ENV": "<PLAID_ENV>",
        "PORT": "<PORT>"
      }
    }
  }
}

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

personal finance mcp in other clients