Personal Capital Connector
FreeNot checkedEnables Claude to query Empower/Personal Capital financial accounts, net worth, transactions, and asset allocation via natural language.
About
Enables Claude to query Empower/Personal Capital financial accounts, net worth, transactions, and asset allocation via natural language.
README
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
- uv — fast Python package manager
- An Empower / Personal Capital account
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:
- Auto-fills your email and password
- Waits up to 3 minutes for you to complete 2FA (SMS, email, or authenticator app)
- Detects successful authentication by intercepting the first valid API response from Empower
- Extracts and saves the session cookies + CSRF token to disk
This approach handles Empower's frequent login-flow changes without brittle scraping.
Install Personal Capital Connector in Claude Desktop, Claude Code & Cursor
unyly install personal-capital-connector-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add personal-capital-connector-mcp -- uvx --from git+https://github.com/meetv123/personal-capital-connectore-mcp personal-capital-connectorFAQ
Is Personal Capital Connector MCP free?
Yes, Personal Capital Connector MCP is free — one-click install via Unyly at no cost.
Does Personal Capital Connector need an API key?
No, Personal Capital Connector runs without API keys or environment variables.
Is Personal Capital Connector hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Personal Capital Connector in Claude Desktop, Claude Code or Cursor?
Open Personal Capital Connector on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Personal Capital Connector with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
