“What's my total net worth in EUR, and how much is liquid cash?”
Connect your AI assistant to your wealth ledger.
Ask about your global assets, partner splits, or live net worth right inside Claude or ChatGPT. Read-only by default, cryptographically secured, and scoped to a token you control.
https://wlthy.io/mcp01 · What you can ask
Real questions for your AI.
The interface is natural language. You don't need to know table names or JSON structures. Ask the way you'd ask your financial advisor.
“How am I allocated by country and asset class?”
“List all real estate assets where my spouse holds more than 30% equity.”
“Parse this attached PDF broker statement and stage the positions for my review.”
02 · The toolset
Seven capabilities in one server.
The server ties directly into your encrypted ledger. You never have to work out which endpoint to call; the model routes it automatically.
get_net_worthReturns total net worth with 1-day and 30-day deltas, plus asset and debt totals and a count of anything still unvalued.
list_portfoliosLists every portfolio in the account — id, name, base currency — so the agent can scope the rest of its questions.
list_assetsFetch detailed positions (active or sold) with pagination and live FX rates. The sold lens returns exit price, fees and taxes.
get_assetFull detail for a single holding plus its 30-day value history — for a deep dive on one position.
get_allocationGranular breakdown by asset class, geography, or currency — the concentration view, on demand.
get_recapPeriod-end balances (not naive sums) across net worth, class, sector or crypto — daily, monthly or quarterly.
parse_documentHands the agent a statement (PDF / CSV / image) to stage extraction for your manual approval — nothing is saved until you confirm.
03 · Integration guide
Setup takes under a minute.
Create a read-only token in Settings → API & MCP (Black plan), then drop it into your client config below. Replace wlthy_mcp_YOUR_TOKEN with the token you minted.
Claude Desktop
Open Settings › Developer › MCP Servers, add the config below, then restart Claude. The mcp-remote shim bridges Claude's local transport to the HTTP endpoint.
{
"mcpServers": {
"wlthy": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://wlthy.io/mcp",
"--header",
"Authorization: Bearer wlthy_mcp_YOUR_TOKEN"
]
}
}
}Cursor IDE
Add wlthy to your global ~/.cursor/mcp.json. Cursor speaks Streamable HTTP natively — no shim needed. See the Cursor MCP docs.
{
"mcpServers": {
"wlthy": {
"url": "https://wlthy.io/mcp",
"headers": {
"Authorization": "Bearer wlthy_mcp_YOUR_TOKEN"
}
}
}
}