mcp-office-suite
mcp-office-suite

One-click install: download office-suite.mcpb from the latest release and double-click it in Claude Desktop.
Hosted endpoint (no install): https://mcp.zovo.one/mcp/office-suite (streamable-http; send Authorization: Bearer <Pro key or anonymous token from https://mcp.zovo.one/mcp/token>).
Read-only mirror of mcp-servers/servers/office-suite. See MIRROR.md.
One install for the whole freelancer office. This MCP server proxies four sibling servers -- time-tracker, price-tracker, spreadsheet and invoice -- so a client gets every tool from all four behind a single config entry instead of four. Under the hood it starts each sibling as its own stdio child process, forwards tools/call, resources/* and prompts/* to whichever child owns the name, and merges their license state into one license_status / license_activate pair. Nothing is re-implemented: each child server runs exactly as it does standalone, with its own local JSON storage.
Every tool of time-tracker, price-tracker, spreadsheet and invoice, one claude mcp add.
60-second install
npm publish for @theluckystrike/mcp-office-suite (and its four dependencies) is pending. Until then, the .mcpb one-click bundle or a clone+build is the working path -- both are verified below. This server is packaged as office-suite.mcpb on release v0.2.1 and is listed on the official MCP registry (io.github.theluckystrike/office-suite-time-invoice-expense-excel-price).
One-click (.mcpb): download office-suite.mcpb from the latest release and double-click it in Claude Desktop:
https://github.com/theluckystrike/mcp-servers/releases/latest
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"office-suite": {
"command": "npx",
"args": ["-y", "@theluckystrike/mcp-office-suite"]
}
}
}Claude Code:
claude mcp add office-suite -- npx -y @theluckystrike/mcp-office-suiteCursor (.cursor/mcp.json):
{
"mcpServers": {
"office-suite": {
"command": "npx",
"args": ["-y", "@theluckystrike/mcp-office-suite"]
}
}
}The npx form above starts working the moment the package is published. Until then, use the .mcpb bundle above, or
build from source with exactly these commands:
git clone https://github.com/theluckystrike/mcp-servers.git && cd mcp-servers
npm install
npm run buildnpm run build (no -w) is required here -- it builds mcp-license and all four sibling servers that office-suite spawns as children, then office-suite itself. Then point your client's command at node with one arg: the absolute path to servers/office-suite/dist/index.js.
To run every server in Pro mode set MCP_LICENSE_KEY in the same config block, or call license_activate once with your key -- it is forwarded to every connected child. Activation is all-or-nothing: the reply is an error unless every child accepted the key, and it prints a per-child table (OK / FAILED with each child's own message) so a bundle that is half Pro cannot look like a success.
Why one server instead of four
Aggregation is what usage rewards in this category: the most-used server we track is a tool-aggregator gateway with 2,530 tools and 419,019 uses, 7.5x the next server and 30x the cohort median. A user who wants "office stuff" should not have to add four separate MCP servers to one client config. Installing this one gets every tool below.
Tools
Tool names are passed through unchanged from each child. If this bundle ever proxies two children that register the same tool name, both are exposed with a <child>_<tool> prefix instead -- this has not happened yet among the four servers below.
time-tracker
Tool | What it does |
| Start a stopwatch for a project; stops and logs any previous running timer |
| Stop the running timer and log it as a time entry |
| Show the running timer and today's total hours |
| Log time you already worked, with a start plus end or minutes |
| List logged time entries as a table (free: last 7 days) |
| Delete one time entry by id |
| Change fields of an existing entry |
| Set the hourly rate and currency for a project |
| Hours and money by project, day, task or tag (tag grouping is Pro) |
| Export the timesheet to a CSV file |
| Turn tracked billable time into invoice line items |
price-tracker
Tool | What it does |
| Check a product's current price right now |
| Start watching a product URL for price drops |
| List all watched products and their latest price |
| Stop watching a product |
| Re-check all watches (or one) immediately |
| Price history for one watched product |
| Record a price by hand, for sites that block fetching |
| Watches that dropped below their target price |
spreadsheet
Tool | What it does |
| Overview of a CSV/XLSX file: sheets, columns, row count |
| Read rows from a spreadsheet |
| Filter, group and sort rows |
| Per-column statistics (min, max, mean, sum, distinct) |
| Find text across a spreadsheet |
| Write rows into a spreadsheet |
| Add a computed column |
| Convert between CSV and XLSX |
invoice
Tool | What it does |
| Set your business profile: name, address, VAT id, IBAN, default currency and terms |
| Store a client so invoices can refer to them by name |
| List every stored client |
| Create an invoice from line items, with tax and discount |
| Create an invoice from hours worked at a rate |
| List invoices |
| Get one invoice by id or number |
| Record a payment against an invoice |
| Render an invoice as a PDF file |
| Invoices past their due date, by how many days (Pro) |
Bundle-wide
Tool | What it does |
| Free/Pro status of every proxied server, and the bundle upgrade link |
| Activate one Pro bundle key across every server at once. Returns an error with a per-child table unless all of them accepted it |
Resources and prompts registered by any child (for example time-tracker's timetracker://today resource and daily_standup prompt) are also proxied under their original names.
Renamed tools
Two children can register the same tool name -- invoice and docx both have business_set. The bundle then exposes both, prefixed with the server they came from (invoice_business_set, docx_business_set), names the renames once on startup, and rewrites the child's own answer so a response that said "Run business_set ..." says the name you can actually call. The full mapping is published as the office://tools_map resource: exposed name -> child.tool, with the renamed pairs listed separately.
Free vs Pro
Each child server keeps its own free tier exactly as documented in its own README (see servers/time-tracker/README.md, servers/price-tracker/README.md, servers/spreadsheet/README.md, servers/invoice/README.md). This bundle changes nothing about those limits -- it only changes how many config entries it takes to reach all four.
A single bundle Pro key ($39 one-time, lifetime) unlocks Pro on every server in the bundle, instead of buying each server's $19 key separately. Activate it once here and it is forwarded to all four children.
Get Pro: https://mcp.zovo.one/buy/bundle
Child processes
Each child runs as its own stdio process. Two things the proxy does on their behalf:
Their stderr is drained into ours, one line at a time, tagged with the child it came from (
[invoice] ...). A child's stderr is a pipe with a small OS buffer; left unread, a child that logged more than that buffer blocked inwrite()and the tool call it was answering never returned.A child that dies rejects its in-flight requests before the suite tries to restart it, so a proxied call fails fast instead of hanging until the client's timeout, where a retry could repeat a mutation that had already been applied.
Privacy
Every child server stores its data locally, in ${XDG_DATA_HOME:-~/.local/share}/mcp-servers/<name>/ per server. This bundle adds no storage of its own and sends nothing anywhere; it only pipes stdio between your MCP client and the four child processes it starts on your own machine.
expense-tracker
TODO: servers/expense-tracker/dist does not exist yet in this repository. Once that server is built and shipped, add it to CHILDREN in src/index.ts, its dependency to package.json, its build step to the Dockerfile, and its tool table to this README.
Built by theluckystrike (https://github.com/theluckystrike).