Beeswax Shares MCP Server
Beeswax Shares MCP Server
A standalone Model Context Protocol server for Beeswax Shares, the SMSF (Australian self-managed super fund) portfolio app. It is a thin client over the app's JSON API (/api/v1), letting Claude (Desktop or Code) read portfolio data, recall transaction history, upload statements, and propose new ledger records for human review.
Claude connects to it over stdio. All money amounts are AUD unless stated otherwise.
How writes work (important)
The record_trade and record_income tools never write directly to the ledger. They create proposed transactions that land in the app's Review Queue, where a human approves or rejects them before anything touches the books. Proposals accept an external_ref idempotency key, so repeated imports of the same source (e.g. the same email) will not create duplicates.
record_cost and update_price write low-risk records (holding costs and price observations) directly. create_holding creates a new security record directly — the buy itself should still go through record_trade.
Related MCP server: IOL MCP Tool
Tools
Tool | What it does |
| Identify user, token scopes, and accessible fund IDs — call first |
| Funds with value, cost base, returns, holdings count |
| Full snapshot: summary, asset allocation, holdings with values/returns |
| Holdings with filters ( |
| True return, income/cost totals, CGT estimate, net proceeds if sold |
| Ledger search (type, financial year, date range, ticker) — "memory recall" |
| Create a brand-new security/asset in the fund |
| Propose a buy/sell (pending human review) |
| Propose a dividend/distribution/interest/rental income (pending human review) |
| Proposals awaiting review in the app's Review Queue |
| Upload a local PDF/CSV statement; extraction + reconciliation run automatically |
| Document + extracted statement lines with match statuses |
| Uploaded documents with extraction status |
| Re-run statement-vs-ledger matching; returns a summary |
| Record a holding cost/expense (insurance, rates, fees…) |
| Record a price observation; refreshes the holding's current price |
| Known brokers (for |
| Supported asset types (for |
List tools include a pagination object (total_count, page, per_page, total_pages) in their results. page/per_page query params are supported, per_page max 100.
Creating an API token
Sign in to the Beeswax Shares app.
Go to Account → API Access.
Create a token with the scopes you need (read scopes for browsing;
proposals:write,documents:write,costs:write,prices:write,holdings:writefor the write tools).Copy the token — it is shown once.
Build
Requires Node 18+.
cd mcp-server
npm install
npm run buildThis compiles TypeScript to dist/index.js.
Distribute as a Desktop Extension (.mcpb)
The easiest way to give this to other people is to package it as a Desktop Extension — a single .mcpb file they open in Claude Desktop. Claude Desktop runs it with its own bundled Node (users need nothing installed) and prompts each user for their own API token, stored securely in the OS keychain. Each token scopes access to that user's own funds, so the same bundle works for everyone.
Build the bundle (maintainer)
cd mcp-server
npm install # all deps (incl. TypeScript, for the build)
npm run build # compile to dist/index.js
npm prune --omit=dev # drop dev deps so they don't ship in the bundle
npx @anthropic-ai/mcpb pack . beeswax-shares.mcpbThis produces beeswax-shares.mcpb (~3 MB). The bundle's metadata and the user-facing config form live in manifest.json; mcpb pack validates it. Distribute the .mcpb via a GitHub Release, a download link, or email — it is a build artifact and is git-ignored, not committed.
Optional:
npx @anthropic-ai/mcpb signadds a code signature so users don't see an "unverified publisher" prompt on install. Unsigned bundles still install fine, with a one-time confirmation.
Install (end user)
Download
beeswax-shares.mcpb.Open it with Claude Desktop (double-click) — an install dialog appears.
When prompted, paste your API token (create one at Account → API Access in Beeswax Shares — it is shown only once). Leave Server URL as the default unless you run your own instance.
Done — the Beeswax Shares tools are now available in Claude.
Configuration (manual / developer setup)
For local development or non-Desktop clients, configure the two environment variables directly. End users should prefer the .mcpb Desktop Extension above.
Two environment variables:
Variable | Meaning | Default |
| Base URL of the Beeswax Shares app |
|
| API token, sent as | (required) |
If your default
nodeis older than 18 (checknode --version), use the absolute path to a Node 18+ binary in the configs below, e.g.~/.nvm/versions/node/v20.18.0/bin/node.
Claude Desktop
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"beeswax-shares": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"],
"env": {
"BEESWAX_URL": "https://alpha.beeswaxapp.com",
"BEESWAX_API_TOKEN": "your-token-here"
}
}
}
}Claude Code
claude mcp add beeswax-shares \
-e BEESWAX_URL=https://alpha.beeswaxapp.com \
-e BEESWAX_API_TOKEN=your-token-here \
-- node /path/to/mcp-server/dist/index.jsSecurity note
The API token grants access to the fund's financial records — treat it like a password: keep it out of source control, scope it minimally, and revoke it from Account → API Access if it leaks. As a safeguard, the record_trade / record_income tools only ever create proposals pending human approval in the app's Review Queue; they cannot post to the ledger directly. All API writes are audit-logged server-side.
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
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/steamau/beeswax-desktop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server