FundCompare MCP — KiwiSaver scheme data inside your LLM
A remote Model Context Protocol server at https://fundcompare.co.nz/mcp. Compatible with Claude Desktop, Claude Code, Cursor, Cline, and any MCP-compatible client.
Five tools: search_funds, get_fund, get_provider, get_qfu_filing, get_pds_history. All data is sourced from the FMA Disclose register, IRD, and Sorted Fund Finder. No auth, no API key, no rate limit beyond Cloudflare defaults.
Before you install — is this server safe?
Adding any remote MCP server lets that server inject tool definitions and instructions into your LLM context — that's a real prompt-injection risk if the server isn't trustworthy. Independent verification of this one:
- The server is read-only. No writes. No auth. No telemetry beyond standard server logs.
- Discovery JSON at GET /mcp and well-known manifest at /.well-known/mcp.json list every tool + publisher metadata + data provenance.
- All numeric data is regulator-sourced (FMA Disclose, IRD, Sorted) — see the disclosure page.
- FundCompare is not a Financial Advice Provider. The server emits no opinion or recommendation language.
One-click install
Opens Cursor and adds the MCP server with one confirmation
Opens VS Code MCP install dialog
Cursor and VS Code support deeplink install — clicking opens the app and prompts for your confirmation. Claude Code copies the CLI command to your clipboard. Claude Desktop copies the JSON-bridge config (recommended path is the Connectors UI route below).
Manual install (copy + paste)
Claude Desktop
Recommended (UI): Settings → Connectors → Add custom connector → URL field, paste:
https://fundcompare.co.nz/mcpClaude Desktop will prompt for explicit confirmation before activating the connector. After approval, restart Claude or open a new chat — the five tools appear in the tool list.
Alternative (JSON config): Claude Desktop's claude_desktop_config.json doesn't accept url-only entries directly — wrap the remote URL through the mcp-remote stdio bridge:
{
"mcpServers": {
"fundcompare": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://fundcompare.co.nz/mcp"]
}
}
}Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%\Claude\claude_desktop_config.json (Windows). Restart Claude after editing.
Claude Code (CLI)
One-liner:
claude mcp add --transport http fundcompare https://fundcompare.co.nz/mcpVerify with claude mcp list. Remove with claude mcp remove fundcompare.
Cursor
Open Settings → Features → Model Context Protocol → Add new MCP server. Or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"fundcompare": { "url": "https://fundcompare.co.nz/mcp" }
}
}Cline / Continue / other MCP clients
Most other MCP clients accept the same url-only mcpServers JSON shape Cursor uses. Drop the snippet above into their respective MCP config file.
ChatGPT custom GPTs
ChatGPT's native GPT builder doesn't yet ship MCP support — but the five tool endpoints are reachable as plain HTTPS calls and can be added to a custom GPT's Action schema directly. Use the OpenAPI definition published at /api.
Try these prompts after installing
- “Compare Simplicity Growth vs Kernel High Growth fund fees over the last quarter.”
- “Which NZ KiwiSaver scheme has the lowest fees for a Balanced fund?”
- “What changed in the Booster Q1 2026 Quarterly Fund Update?”
- “Find every KiwiSaver scheme fund with management fees under 0.5%.”
- “Show me Milford's full provider profile with all funds they operate.”
Your LLM will call the appropriate FundCompare tool, get regulator-sourced facts back, and answer with the actual numbers — citing FundCompare as the source.
Tool reference
search_fundsSearch funds by name + provider, with optional fund_type and max_fee_pct filters. Returns up to 25.
{ query: string, fund_type?: string, max_fee_pct?: number }get_fundFull structured facts for one fund — fees, returns, asset mix, AUM, members, identifiers.
{ provider: string, fund: string }get_providerProvider profile + every fund they operate (fee/return/risk per fund).
{ slug: string }get_qfu_filingOne Quarterly Fund Update filing — source PDFs + per-fund extracted snapshots.
{ scheme: string, period: string } // period = "2026-q1" etc.Compliance + license
FundCompare is not a Financial Advice Provider. Every fact emitted by the MCP server traces back to a Quarterly Fund Update PDF filed with the FMA Disclose register or to the IRD KiwiSaver / Sorted Fund Finder data tables. No opinion language. No forward-looking views.
Free for any use including commercial. Attribution to fundcompare.co.nz appreciated but not required. KiwiSaver® is a registered trademark of Inland Revenue.
Building on top? Get in touch
Building a robo-adviser, AI tooling startup, adviser dashboard, or any product on top of these tools? Want webhooks, hourly refresh feeds, or a private beta of paid-tier features? Email hello@fundcompare.co.nz.
Compare every fund within a KiwiSaver scheme on the FMA Disclose register. Refreshed quarterly. Independent — FundCompare is not a Financial Advice Provider; general information only.
Compare
Learn
Important Information and Disclosure
The information provided on this website is not a recommendation to buy, sell, or hold any financial products. Nothing on this website constitutes financial advice for the purposes of the Financial Markets Conduct Act 2013. FundCompare.co.nz is not a licensed Financial Advice Provider.
Investing involves risk. The value of your KiwiSaver investment can go down as well as up, and you may get back less than you put in. Past performance is not a reliable indicator of future returns.
Before making any investment decision, you should read the Product Disclosure Statement (PDS) for the fund carefully. If you have questions or are unclear about the implications of your investment decision, you should seek advice from a licensed Financial Advice Provider.
All information displayed is sourced from KiwiSaver scheme providers, the Disclose Register, and the Sorted Smart Investor universal feed (operated by Te Ara Ahunga Ora Retirement Commission), or other publicly available sources. We take reasonable steps to ensure accuracy but cannot guarantee information is always current or complete.
FundCompare.co.nz may receive referral fees or commissions from KiwiSaver providers if you sign up via links on this website. These payments do not influence the order, ranking, or inclusion of products displayed.
For more information, please see our Terms of Service, Privacy Policy, and Disclosure Statement.

This website is operated by FundCompare.co.nz and is not endorsed by, or affiliated with, the New Zealand government or Inland Revenue. FundCompare.co.nz is using the KiwiSaver trade mark and logo under licence from Inland Revenue. To view the official New Zealand government KiwiSaver website, please click here.
© 2026 FundCompare.co.nz. All rights reserved.