personal-capital-connector-mcp

personal-capital-connector-mcp

Enables Claude to query Empower/Personal Capital financial accounts, net worth, transactions, and asset allocation via natural language.

Category
Visit Server

README

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?"

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured