xp-mcp
Talk to your XP Investimentos portfolio through Claude — 100% local, read-only, zero scraping.
README
<div align="center">
xp-mcp
Talk to your XP Investimentos portfolio through Claude — 100% local, read-only, zero scraping.
</div>
What is this?
xp-mcp is a Model Context Protocol server that exposes your XP Investimentos portfolio to Claude Desktop (or any MCP-compatible client). You feed it the official PDF/CSV exports XP already gives you — the server parses them, normalizes everything into a local SQLite database, and answers questions through MCP tools.
- 🔒 Local-first — data lives in
~/.xp-mcp/data.db. Zero outbound HTTP calls. - 📵 No credentials, no scraping — you control what goes in (PDF/CSV exports).
- 👁 Read-only by design — no tool can place orders or modify anything at XP.
- 🧱 Stdio transport — Claude spawns the process; nothing listens on a port.
Built for personal use, but the architecture works for any custodian that lets you export reports (Rico, NuInvest, Inter, Avenue, ...). PRs welcome.
Why does this exist?
Custodian apps are great at "show me what I have" but terrible at:
- "Compare my current allocation against my target portfolio."
- "Which of my CDBs mature in the next 12 months?"
- "What's my real yield-to-maturity weighted by position size?"
- "How concentrated am I in a single issuer's FGC limit?"
MCP lets you bolt that intelligence onto Claude without giving the LLM provider your credentials, sending your positions to a third-party SaaS, or trusting browser-scraping that breaks every quarter.
Demo
After connecting the server, just chat with Claude:
You: Liste minhas posições agrupadas por classe de ativo.
Claude (using portfolio-mcp.get_positions):
TESOURO (53.28%) R$ 16,644.31
• Tesouro Selic 2031 R$ 14,556.80
• Tesouro Selic 2028 R$ 2,087.51
RENDA_FIXA_PRIVADA (20.98%) R$ 6,554.32
• CDB BANCO XP - AGO/2026 - 15,00% R$ 2,203.85
• CDB BANCO XP - SET/2026 - 14,95% R$ 2,197.10
• CDB BANCO XP - OUT/2026 - 14,55% R$ 1,083.63
• CDB BANCO XP - NOV/2027 - 100,00% CDI R$ 1,069.74
FUNDO (10.48%) R$ 3,273.71
ACAO ( 7.44%) R$ 2,325.12 (BBAS3)
FII ( 7.81%) R$ 2,439.20 (MXRF11, GTWR11)
Total: R$ 31,236.66
You: Quais CDBs vencem em 2026?
Claude (filters by asset_class + maturity_date):
3 CDBs maturing in 2026:
• Aug/2026 — 15.00% pre-fixed R$ 2,203.85
• Sep/2026 — 14.95% pre-fixed R$ 2,197.10
• Oct/2026 — 14.55% pre-fixed R$ 1,083.63
All issued by BANCO XP S.A. (within single-issuer FGC limit ✓)
You: Estou bem alocado em relação ao meu target?
Claude (using portfolio-mcp.calculate_allocation_drift):
Lendo ~/.xp-mcp/allocation.json (target: 40% Tesouro, 20% RF, 15% FII,
15% Ações, 5% ETF, 5% Fundos, tolerância ±2pp).
Mais fora do alvo:
• TESOURO: 53.28% (target 40%) → vender ~R$ 4.148
• ACAO: 7.44% (target 15%) → comprar ~R$ 2.362
• FII: 7.81% (target 15%) → comprar ~R$ 2.247
Dentro da banda:
• RENDA_FIXA_PRIVADA: 20.98% (target 20%) ✓
Fora da banda, magnitude menor:
• FUNDO: 10.48% (target 5%) — vender ~R$ 1.712
• ETF: 0.00% (target 5%) — comprar ~R$ 1.562
Net rebalance: -R$ 152 (aporte pequeno sugerido pra fechar).
Architecture
┌─────────────────┐
│ Claude Desktop │
└────────┬────────┘
│ stdio (JSON-RPC 2.0)
▼
┌─────────────────────┐ PDF / CSV ┌──────────────────────┐
│ xp-mcp │◀──────────────────────│ XP exports │
│ TypeScript + MCP │ │ (your machine) │
└────────┬────────────┘ └──────────────────────┘
│ SQL (better-sqlite3, WAL mode)
▼
┌─────────────────────┐
│ SQLite │
│ ~/.xp-mcp/ │
└─────────────────────┘
No network. No credentials. Read-only at XP.
Stack: TypeScript · @modelcontextprotocol/sdk · better-sqlite3 · pdf-parse · papaparse · zod
Tools
| Tool | Purpose | Status |
|---|---|---|
import_xperformance_pdf |
Parse XP's official portfolio PDF (XPerformance). Idempotent on re-import. | ✅ |
import_extract_csv |
Parse a Posição Consolidada / Extrato CSV. Auto-detects delimiter and column aliases. | ✅ |
get_positions |
List positions with quantity, market value, indexer, maturity. Optional class filter. | ✅ |
get_portfolio_summary |
Aggregate stats + declared-vs-computed reconciliation gap | ⏳ |
get_transactions |
History of buys/sells | ⏳ |
get_dividends |
Income / proventos | ⏳ |
calculate_allocation_drift |
Compare current vs target allocation from ~/.xp-mcp/allocation.json. Returns drift %, BRL delta, and BUY/SELL suggestions per class. |
✅ |
import_nota_corretagem |
Parse broker-note PDFs for transaction history | ⏳ |
Quick Start
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"portfolio": {
"command": "npx",
"args": ["-y", "portfolio-mcp"]
}
}
}
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Restart Claude Desktop. Done.
See Development below for clone + build instructions if you want to hack on the server.
How to export from XP
XP has no single "export everything" button. Try in this order:
- XPerformance PDF (recommended) — Investimentos → XPerformance → ⬇ PDF. The richest single-file snapshot.
- Portal XP web — Investimentos → Posição Consolidada → Exportar CSV
- Hub XP / Assessor Digital — Meus Investimentos → Posição → Exportar
- Notas de corretagem (PDF) — Conta → Documentos → Notas de Corretagem (phase 2)
- Extrato de movimentação — Conta → Extrato → filtrar período → Exportar
The CSV parser auto-detects ;, ,, \t, | delimiters and fuzzy-matches common XP column names (Quantidade, Qtd, Preço médio, Valor aplicado, ...). If a column is missed, extend HEADER_ALIASES in src/parsers/csv-extract.ts.
Configuring your target allocation
calculate_allocation_drift reads ~/.xp-mcp/allocation.json. A starter file is included at examples/allocation.example.json. Copy it once and edit the percentages:
mkdir -p ~/.xp-mcp
cp examples/allocation.example.json ~/.xp-mcp/allocation.json
The six valid keys are TESOURO, RENDA_FIXA_PRIVADA, FII, ETF, ACAO, FUNDO. Values must sum to 1.00 (±0.001). tolerance_pp is optional — when set, drifts within the band are reported as "ok" with no action.
Try it without Claude
The server speaks JSON-RPC 2.0 over stdio. Smoke test from any terminal:
node dist/index.js <<'EOF'
{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0.0.0"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/list"}
EOF
You should see the server announce itself and list the three working tools.
Project layout
src/
├── index.ts # MCP server entrypoint (stdio transport)
├── tools/
│ ├── import-xperformance-pdf.ts # XPerformance PDF → positions
│ ├── import-extract-csv.ts # XP CSV → positions
│ └── get-positions.ts # SQL → positions list with P&L
├── parsers/
│ ├── pdf-xperformance.ts # PDF text → rows
│ ├── csv-extract.ts # papaparse + fuzzy header matching
│ ├── classify.ts # asset-class heuristics + name metadata
│ └── normalize.ts # BRL / date / quantity normalizers
├── storage/
│ ├── db.ts # better-sqlite3 singleton, WAL, env override
│ ├── schema.ts # CREATE TABLE + AssetClass enum
│ └── positions-repo.ts # UPSERT, listPositions, import records
└── util/
└── zod-to-json-schema.ts # minimal zod → JSON Schema for MCP
Data model
imports every parse attempt with row counts, timestamps, source path
positions one row per (asset_class, external_id); upserted on re-import
transactions buys/sells from broker notes (phase 2)
dividends income / proventos (phase 2)
All monetary values are stored as INTEGER cents. Float math + currency is a well-known source of off-by-a-cent bugs; integers make every aggregation exact.
The UNIQUE (asset_class, external_id) constraint + ON CONFLICT DO UPDATE makes re-importing the same file idempotent — no duplicates, no manual deduping.
Design decisions worth calling out
- Wide
positionstable with nullable per-class columns. A table-per-asset-class would be cleaner in theory but adds JOINs for every read, and the column set is small. The wide table fits the access pattern (Claude almost always wants "all positions, maybe filtered by class"). - Stdio over HTTP. Claude Desktop spawns the process directly. Zero ports listening, no auth surface, no CORS to misconfigure. Trade-off: no remote clients without a wrapper.
- stderr-only logging. stdout is the JSON-RPC wire. One stray
console.logsilently corrupts every response. All logs go to stderr, where Claude Desktop captures them into~/Library/Logs/Claude/mcp-server-xp.log. - No price fetching in MVP. Adding it means a network dependency and a rate-limit problem. When it lands (phase 2), it'll be behind an opt-in env var with a clearly-documented data source.
Privacy
- The SQLite file (
~/.xp-mcp/data.db) is the only place your position data lives..gitignoreblocks*.db,*.sqlite, anddata/from ever being committed. - The server makes no outbound HTTP calls in the current MVP. No telemetry. No analytics. No price API.
- If/when price fetching is added (B3, brapi.dev, Yahoo Finance), it will be opt-in via env var, scoped to public quote APIs, with no portfolio data leaving the machine.
Roadmap
- [x] PDF parser for XPerformance (XP's official portfolio report)
- [x] CSV parser for Posição Consolidada / Extrato
- [x]
get_positionswith class filter, P&L when invested-value is known - [ ]
get_portfolio_summarywith declared-vs-computed reconciliation gap - [ ]
import_nota_corretagem(broker-note PDF → transactions) - [ ] CSV parser for proventos export
- [x]
calculate_allocation_driftagainst~/.xp-mcp/allocation.json - [x] v0.3 — npm publish + Smithery + awesome-mcp PR
- [ ] Optional opt-in price fetching (B3 / brapi.dev / Yahoo)
- [ ] Adapters for other Brazilian brokers (Rico, NuInvest, Inter, Avenue)
- [ ] Open Finance Brasil investment module when the standard matures
Development
For contributors or anyone who wants to run a local checkout instead of the published npm package:
git clone https://github.com/Satsuj1n/portfolio-mcp
cd xp-mcp
npm install
npm run build
npm run test
Then point claude_desktop_config.json at the local build:
{
"mcpServers": {
"portfolio": {
"command": "node",
"args": ["/absolute/path/to/portfolio-mcp/dist/index.js"]
}
}
}
Run the type checker with npm run typecheck. Smoke-test the MCP server end-to-end with:
node dist/index.js <<'EOF'
{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"local","version":"0.0.0"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/list"}
EOF
Contributing
PRs welcome — especially:
- New parsers (other brokers, other export formats)
- Heuristics for
classifyAssetcovering edge cases your portfolio exposes - Additional tools (
calculate_allocation_drift,get_dividends, ...) - Tests with anonymized fixtures (no real position values, no real account numbers)
Please never include real portfolio data, account numbers, or PDFs in your PR. Use the fixture pattern in tests/fixtures/ (synthetic data only).
License
MIT — see LICENSE.
Built by Felipe Lima · Powered by Model Context Protocol.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。