pp-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pp-mcpshow me my accounts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
English | Deutsch
pp-mcp — MCP Server for Portfolio Performance
A read-only MCP server that provides filtered account and portfolio data from one or
more Portfolio Performance .portfolio
files — e.g. to generate reports from them (transactions of an account,
distributions/interest/taxes for a period, etc.).
Files are only read, never modified. Supports unencrypted and AES-encrypted (password-protected) files.
Multiple portfolio files (multi-source)
By default, one instance serves exactly one file (PP_FILE_PATH). Via
PP_PORTFOLIOS_CONFIG you can instead configure a JSON file with multiple sources
(see portfolios.json.example):
[
{"id": "example1", "label": "Example1", "path": "/data/portfolios/Example1.portfolio", "password": null},
{"id": "example2", "label": "Example2", "path": "/data/portfolios/Example2.portfolio", "password": null}
]Every tool then gets an additional optional parameter source (the id from the
config). With exactly one configured source, source can be omitted.
list_data_sources returns the available id+label without exposing paths or
passwords. Each source has its own mtime cache.
Tools
Tool | Purpose |
| Configured portfolio sources (id, label) for the |
| File metadata: path, modification date, encrypted yes/no, version, base currency, number of accounts/portfolios/securities/transactions, earliest/latest transaction date. |
| All accounts (uuid, name, currencyCode, isRetired). |
| All portfolios (uuid, name, reference account, isRetired). |
| All securities (uuid, name, isin, wkn, tickerSymbol, currencyCode, isRetired). |
| Valid transaction types as a filter aid. |
| Filtered transactions (period, types, account/portfolio/security – each optional), incl. |
| Sums and counts per transaction type + total sum for the period. |
| Most recent known price of a security ( |
| Historical daily closing prices for the period (optional |
| Price as of a reference date – exact or last price before it (for point-in-time valuations). |
| Most recent price of all securities as an overview. |
| Price update configuration (feed type + feed URL) of all active securities. |
| Fetch missing, more recent prices via feed – only temporary in memory, see below. |
| Portfolio valuation: holdings (quantity × price) as of a reference date, optionally per portfolio. |
| Value history of the portfolio across multiple reference dates ( |
| Unrealized gains per open position (moving average price, as in PP standard). |
| Realized gains per security from sales within the period. |
| Account balance of a cash account as of a reference date. |
| All taxonomies (asset classes, regions, industries, …) with classification tree and assignments. |
| Holdings value distributed across the classifications of a taxonomy. |
| Savings/investment plans with security/portfolio/account, amount and interval. |
| Checks whether the server is running. |
get_transactions covers both core use cases:
Transactions of an account within a period: set
account+date_from/date_to.Portfolio transactions of certain types: set
portfolio_name+types(+ period).
For the current account balance use get_account_balance, not manual summation of
get_transactions: get_transactions/get_transaction_summary only filter by the
account primarily referenced in the transaction – for a CASH_TRANSFER between two
accounts, the inflow does not show up at the destination account (only at the
source account). get_account_balance accounts for both sides of CASH_TRANSFER as
well as the correct signs of all cash-affecting transaction types and returns the
actual balance.
Account/portfolio/security can be specified as name or UUID (case-insensitive).
Dates in ISO format YYYY-MM-DD. Amounts are returned as strings (exact decimal
values). All tools except list_transaction_types (source-independent) and
list_data_sources additionally accept source to select the portfolio file in
multi-source operation.
Transaction types: PURCHASE, SALE, SECURITY_TRANSFER, CASH_TRANSFER, DEPOSIT, REMOVAL, DIVIDEND, INTEREST, INTEREST_CHARGE, TAX, TAX_REFUND, FEE, FEE_REFUND.
For the price tools, the security can also be specified via ISIN, WKN, or ticker
(instead of name/UUID). Prices are returned as strings; source distinguishes
latest (most recently fetched price) from historical (newest historical closing
price).
get_holdings computes the held quantity per security from the transactions
(PURCHASE/SALE, inbound/outbound deliveries, portfolio transfers) and values it with
the price as of the reference date. Without portfolio_name, all portfolios are
combined (transfers between portfolios cancel out); without date, the most recent
price applies. No currency conversion: values are in the security's currency,
sums are reported per currency (totalsByCurrency).
get_holdings_history repeats the same calculation for a series of reference dates
between date_from and date_to (inclusive) and returns only totalsByCurrency per
date (no individual positions) – intended for value-history charts. Without
date_from, the date of the first transaction is used; without date_to, today's
date. interval controls the resolution: monthly (default, month-end dates, the
last point is always date_to), weekly, or daily.
Fetching missing prices (refresh_prices)
Portfolio Performance configures securities with a price feed (feed/feedURL per
security, visible via list_price_feeds). If the .portfolio file isn't fully
up to date (e.g. PP hasn't been opened for a while), refresh_prices can fetch
missing, newer prices directly via this feed. Currently only the feed type
GENERIC_HTML_TABLE with an ariva.de host is supported (SSRF-protected: https
only, host allowlist, no private/internal IPs) – other feeds (PP, YAHOO, …) are
skipped and reported as such, not as an error.
The fetched prices land in a purely temporary in-memory overlay per portfolio
source – the .portfolio file is never modified. The overlay only adds dates
missing from the file (existing file prices are never overwritten), and is
automatically taken into account by all price/valuation tools
(get_latest_price, get_price_history, get_holdings, get_unrealized_gains,
get_holdings_history, …). It is discarded as soon as the file is actually
rewritten (mtime change, e.g. by PP itself) or the server restarts – calling
refresh_prices again brings it back up to date if needed.
Running with Docker (recommended)
Two compose files for different deployment scenarios:
docker-compose.yml— multi-source production deployment (e.g. Synology NAS): a directory with multiple.portfoliofiles +portfolios.json,MCP_AUTH_TOKENrequired, port bound only to127.0.0.1, external Docker networks for nginx-proxy-manager and other backends.docker-compose.dev.yml— simple local single-source setup: a single file mounted viaPP_HOST_FILE, no auth required, no external networks.
cp .env.example .env # adjust depending on the chosen compose file
docker-compose -f docker-compose.dev.yml up -d --build # local, single-source
# or
docker-compose up -d --build # production, multi-sourceThe MCP server runs on http://localhost:8080 (streamable-http). See the comments
in the respective compose file and portfolios.json.example for the relevant
environment variables.
Running locally (without Docker)
pip install -r requirements.txt
export PP_FILE_PATH=/path/to/file.portfolio
# optional: export PP_PASSWORD=... ; export MCP_TRANSPORT=streamable-http
python src/main.pyFor multi-source, set PP_PORTFOLIOS_CONFIG=/path/to/portfolios.json instead
(takes precedence over PP_FILE_PATH/PP_PASSWORD).
Switching the portfolio file (macOS)
If you manage multiple .portfolio files, switch-portfolio.sh lets you quickly
switch between them. The script sets PP_FILE_PATH in .env and restarts the
server — for local operation, via the launchd service de.pp-mcp.server:
./switch-portfolio.sh --list # show active files
./switch-portfolio.sh /Users/you/Portfolios/Depot.portfolio # switch + restart--list hides backups (*.backup*) and conflict copies (*conflicted*).
The paths (APP_DIR, PORTFOLIO_DIR, SERVICE) are defined as constants at the
top of the script.
macOS Shortcut: A Shortcut with a selection menu can be built from four actions —
"Run Shell Script" (switch-portfolio.sh --list) → "Split Text" (on new lines)
→ "Choose from List" → "Run Shell Script" with the chosen path as argument
(switch-portfolio.sh "$1"). This lets you switch the portfolio by click, keyboard
shortcut, or Siri.
Configuration (environment variables)
Variable | Default | Meaning |
| – | Path to the |
| empty | Password for encrypted files (single-source). |
| empty | Path to the JSON configuration of multiple portfolio sources (multi-source, see above). Takes precedence over |
|
|
|
|
| Host port (Docker). |
| empty | Optional bearer token; empty = no auth. Required as soon as the server is reachable outside a trusted local network. |
|
| If |
Structure
src/config.py— Pydantic settings (env /.env).src/portfolio.py—Portfolioclass (mtime-based cache, name↔UUID resolution, filtering & aggregation, one instance per source) +PortfolioRegistry(manages multiplePortfolioinstances based on the configured sources, one persourceid).src/mcp_server.py— FastMCP tools (thin wrappers around the registry), optional bearer auth.src/price_feed.py— SSRF-protected scraper for theGENERIC_HTML_TABLEprice feed (ariva.de), used byrefresh_prices.src/main.py— server startup.src/pp_parser/— vendored parser (decrypts/decompresses the file, reads protobuf).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Nokke32/pp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server