Skip to main content
Glama
meetv123

personal-capital-connector-mcp

by meetv123

Personal Capital MCP Connector

A Model Context Protocol (MCP) server that connects Claude to your Empower / Personal Capital financial data. Ask Claude natural-language questions about your accounts, net worth, spending, and investment holdings — all answered from live data.

What it does

Tool

Example questions

list_accounts

"What's my Chase credit card balance?" / "Show my savings accounts"

get_net_worth

"What's my net worth?" / "How much do I owe vs own?"

get_transactions

"What did I spend at restaurants last month?"

get_asset_allocation

"What's my asset allocation in my 401k?"

check_auth_status

"Is my Empower session still valid?"

Related MCP server: CryptoPilot MCP

Project structure

personal-capital-connector-mcp/
├── pyproject.toml
└── src/personal_capital_connector/
    ├── __init__.py
    ├── __main__.py
    ├── auth.py      # browser-based 2FA login + session persistence
    ├── client.py    # API wrapper and data formatters
    ├── server.py    # FastMCP server exposing 5 tools to Claude
    └── cli.py       # CLI entry point (auth / status / serve)

Prerequisites

Setup

Step 1 — Clone and authenticate (interactive browser + 2FA):

git clone https://github.com/meetvanani/personal-capital-connector-mcp.git
cd personal-capital-connector-mcp
uv run personal-capital-connector auth

A browser window opens, auto-fills your credentials, and waits for you to complete 2FA. The session is saved to ~/.config/personal-capital-connector/session.json (chmod 600). Re-run this any time your session expires.

Step 2 — Add to Claude Desktop's MCP config:

Open ~/Library/Application Support/Claude/claude_desktop_config.json and add:

{
  "mcpServers": {
    "personal-capital": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/absolute/path/to/personal-capital-connector-mcp",
        "personal-capital-connector"
      ]
    }
  }
}

Replace /absolute/path/to/personal-capital-connector-mcp with the actual path where you cloned the repo.

Step 3 — Restart Claude Desktop and start asking questions.

Other CLI commands

# Check if the saved session is still valid
uv run personal-capital-connector status

# Explicitly start the MCP server (same as default / no subcommand)
uv run personal-capital-connector serve

How authentication works

Login uses Playwright to open a real Chromium browser:

  1. Auto-fills your email and password

  2. Waits up to 3 minutes for you to complete 2FA (SMS, email, or authenticator app)

  3. Detects successful authentication by intercepting the first valid API response from Empower

  4. Extracts and saves the session cookies + CSRF token to disk

This approach handles Empower's frequent login-flow changes without brittle scraping.

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    -
    quality
    D
    maintenance
    Enables AI-powered portfolio analysis for Wealthfolio, allowing Claude to query and analyze investment holdings, asset allocation, real estate properties, and execute transactions through natural language.
    Last updated
    1
  • A
    license
    A
    quality
    B
    maintenance
    Connects Claude Desktop to crypto and brokerage portfolio data via Coinbase and SnapTrade, providing read-only tools to inspect accounts, holdings, prices, and provider health.
    Last updated
    5
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Query bank accounts, credit cards, and transactions via Sophtron's financial data API. Works with Claude Desktop and any MCP-compatible client.
    Last updated
    1
    Apache 2.0
  • A
    license
    -
    quality
    D
    maintenance
    Integrates Claude with the BudgetBakers Wallet API to access financial data including accounts, transactions, categories, and spending analytics.
    Last updated
    13
    MIT

View all related MCP servers

Related MCP Connectors

  • Connect AI agents to bank accounts, transactions, balances, and investments.

  • Ask your AI about bank accounts, spending, debts, holdings, and investment activity.

  • Brazilian Open Finance MCP — 30+ banks (Itaú, Nubank, etc.) to Claude/Cursor. Read-only.

View all MCP Connectors

Latest Blog Posts

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/meetv123/personal-capital-connectore-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server