io.github.theluckystrike/office-suite-time-invoice-expense-excel-price
MCPB · OFFICE-SUITE.MCPB · SCANNED SEP 21
One MCP server for the whole freelancer office: time tracking, price watching, spreadsheets, PDF.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →
Supply Chain Security22
- Malware scan not yet available for this package.Unverified
- Known CVEs were checked across the 190 of 190 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- 88 of 190 dependencies flagged as unhealthy (2 deprecated). View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 3 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability81
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 24098 tokens (~139/item across 173 items; 158 tools + 15 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage95
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 85% of tool parameters carry a description.Partial
Tool Safety75
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- 0 of 12 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "entry_delete" implies "delete" and declares no destructiveHint at all, which the MCP spec reads as destructive by default. See how to fix → Fail
- An AI judge read all 159 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
mcpb · office-suite.mcpb
Download bundleEvery change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 17 Sept 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 21 Sept 2026 · Analysed mcpb/https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/office-suite.mcpb@0.22.0
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | mcpb |
Background: How many MCP packages publish verified provenance →
Dependencies 190 packages
| Packages resolved | 190 |
|---|---|
| Deprecated | 2 |
| Stale | 88 |
| Tree resolution | Complete |
Background: SBOMs and build attestations, explained →
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
entry_delete Delete time entry ~60
Delete one logged entry by id and report the project and hours removed. It never touches a running timer. A billed entry goes too, losing the invoice record, so correct one with entry_edit instead.
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | yes | Entry id from entry_list |
No output schema declared.
No examples provided.
entry_edit Edit time entry ~175
Change one logged entry by id; only the fields you pass move. minutes keeps start and moves end, an end at or before start is refused, tags REPLACES the list, and rate is hourly in MAJOR units.
| Name | Type | Req | Description |
|---|---|---|---|
| billable | boolean | – | – |
| currency | string | – | Currency of the rate, e.g. EUR |
| end | string | – | ISO 8601 |
| id | string | yes | Entry id from entry_list |
| minutes | number | – | New duration in minutes, keeps start |
| note | string | – | – |
| project | string | – | – |
| rate | – | – | Hourly rate override for this entry, a number or words like '90 euros' |
| start | string | – | ISO 8601 |
| tags | array | – | – |
| task | string | – | – |
No output schema declared.
No examples provided.
entry_list List time entries ~109
List logged entries as a table of id, day, start, project, task, hours, billable, tags and note, newest first, with total hours. Free reads the last 7 days and says so; Pro reads the whole history.
| Name | Type | Req | Description |
|---|---|---|---|
| from | string | – | ISO date/time lower bound |
| limit | integer | – | Maximum rows, newest first (default 50) |
| project | string | – | Filter by project name |
| to | string | – | ISO date/time upper bound |
No output schema declared.
No examples provided.
entry_mark_billed Mark time entries as billed ~199
Close the loop after an invoice is issued: stamp the tracked hours that went on it with the invoice number, so report and invoice_summary stop offering them and the same hours are never billed twice.
| Name | Type | Req | Description |
|---|---|---|---|
| billed_at | string | – | ISO timestamp of the stamp, defaults to now |
| from | string | – | ISO date/time start of the billed period, used with project |
| ids | array | – | Exact entry ids, normally the entry_ids invoice_summary returned. Pass either ids or project plus from and to. Entries already billed are left alone and listed back to you. |
| invoice_number | string | yes | The invoice these hours were put on, e.g. INV-2026-0001 |
| project | string | – | Project or client, used with from and to instead of ids; every billable entry in that range is stamped. |
| to | string | – | ISO date/time end of the billed period, used with project |
No output schema declared.
No examples provided.
event_export Export events to a .ics file ~136
Call this tool to write chosen events to a new .ics file you can send or import elsewhere. Pass either ids (from events_list) or a from/to window. Times are written in UTC so the file lands correctly in any client.
| Name | Type | Req | Description |
|---|---|---|---|
| calendar | string | – | With from/to: limit to one calendar |
| from | string | – | First day, YYYY-MM-DD (alternative to ids) |
| ids | array | – | Event ids from events_list, events_search or next_event |
| out_path | string | yes | Where to write the .ics file |
| to | string | – | Last day, YYYY-MM-DD, included |
No output schema declared.
No examples provided.
event_to_time_entry Turn a meeting into a time entry ~155
Take one event and return the exact arguments for the time-tracker's entry_add, so a meeting that already happened becomes billable time without retyping it. Writes nothing: pass the JSON straight to entry_add.
| Name | Type | Req | Description |
|---|---|---|---|
| currency | string | – | Currency of the rate: EUR, USD, GBP, PLN, or the word the user said ('euros'). Without it the time-tracker falls back to USD. |
| event_id | string | yes | Event id from events_list, events_search or next_event |
| project | string | yes | Project or client the meeting is billed to |
| rate | – | – | Hourly rate for this entry; a number (120) or the words the user said ('120 euros an hour') |
No output schema declared.
No examples provided.
events_list List events in a window ~115
Every event between two dates, recurring expanded to occurrences, sorted by start. Times shown in your zone (profile's, else this machine's) unless zone passed. Each id works for event_export or event_to_time_entry.
| Name | Type | Req | Description |
|---|---|---|---|
| calendar | string | – | One calendar name; default every imported calendar |
| from | string | yes | First day, YYYY-MM-DD |
| to | string | yes | Last day, YYYY-MM-DD, included |
| zone | string | – | Show local times in this zone or city instead of your own |
No output schema declared.
No examples provided.
events_search Search events ~94
Find events whose title, description, location or attendees contain a phrase. Searches every imported calendar. Without from/to it looks a year back and a year forward on Pro, and the free window either side of today.
| Name | Type | Req | Description |
|---|---|---|---|
| from | string | – | First day, YYYY-MM-DD |
| query | string | yes | Words to look for, case-insensitive |
| to | string | – | Last day, YYYY-MM-DD, included |
No output schema declared.
No examples provided.
export_csv Export entries to CSV ~170
Call this tool to export the timesheet to a CSV file (excel-friendly) you can hand to a bookkeeper: one row per entry with hours, billable, rate, currency and amount. Returns the file path written.
| Name | Type | Req | Description |
|---|---|---|---|
| from | string | – | ISO date/time lower bound. On the free tier the export is clamped to the last 7 days; Pro exports the full history. |
| path | string | – | Target file path; a relative path resolves against the working directory. Defaults to a timestamped file in the local data directory, and the full path is returned. |
| project | string | – | Optional project filter |
| to | string | – | ISO date/time upper bound. On the free tier the export is clamped to the last 7 days; Pro exports the full history. |
No output schema declared.
No examples provided.
find_meeting_slots Find meeting slots ~303
Rank the times when every participant is inside their own working hours. Returns each slot as a UTC instant with the local time for every participant and a fairness score, best first.
| Name | Type | Req | Description |
|---|---|---|---|
| days | integer | – | How many days ahead to search, default 5, at most 366. Free tier: a search longer than 5 days is shortened to 5, not refused |
| duration_minutes | integer | – | Meeting length in minutes, default 60, at most 1440 |
| earliest_date | string | – | First date to consider, YYYY-MM-DD, default today |
| limit | integer | – | How many slots to return, default 8. Slots are ranked by fairness: the score is the WORST participant's distance in hours from 13:00 local, so a slot that is 07:00 for one person never outranks one t… |
| participants | array | yes | Who has to attend. A zone is OPTIONAL per person: a saved contact supplies their own, and anyone left without one (you, typically) takes the timezone on your shared business profile, so never ask the… |
| recurring | boolean | – | Pro: also report the weekly recurring times that work on every searched weekday |
No output schema declared.
No examples provided.
forecast Revenue forecast ~63
Expected invoiced revenue per calendar month per currency from active schedules. Invoiced and skipped periods are excluded and paused schedules listed apart. Free: 3 months; Pro: up to 120.
| Name | Type | Req | Description |
|---|---|---|---|
| months | integer | – | Months ahead including this one, default 12 |
No output schema declared.
No examples provided.
free_busy Busy blocks and free windows ~159
Merged busy blocks and the free gaps inside your working hours over a day range. Events marked free do not count; whole-day events block the day. Free: 31 days. Use conflicts for overlapping pairs.
| Name | Type | Req | Description |
|---|---|---|---|
| calendars | array | – | Calendar names; default all of them |
| from | string | yes | First day, YYYY-MM-DD |
| to | string | yes | Last day, YYYY-MM-DD, included |
| work_end | string | – | End of your working day, HH:MM, default 17:00 |
| work_start | string | – | Start of your working day, HH:MM, default 09:00 |
| zone | string | – | Zone the working hours and the output are in; default your own |
No output schema declared.
No examples provided.
fx_rates_for FX rates in the shape expense-tracker wants ~160
Call this tool when a rebill or an invoice spans more than one currency, instead of asking the user for rates. Returns the fx_rates object expense_to_invoice takes, plus the rate date to write on the invoice.
| Name | Type | Req | Description |
|---|---|---|---|
| currencies | array | yes | The other currencies present, e.g. ["EUR", "GBP"]. Direction: each returned rate means 1 unit of that key = X units of the target, so {"EUR": 1.08} is 1 EUR = 1.08 of the target. The target needs no… |
| target | string | – | The currency the invoice will be issued in; defaults to the shared business profile's default_currency. Pass it on as target_currency alongside the fx_rates object |
No output schema declared.
No examples provided.
ics_create Write a calendar invite ~380
Call this tool to write a .ics for one meeting and return the path plus the start in UTC and in your zone. Times are stored in UTC so it lands correctly in any client. Free: 3 files a month.
| Name | Type | Req | Description |
|---|---|---|---|
| attendees | array | – | Attendees. An entry with an email is invited (ATTENDEE:mailto:...); a name with no email is listed in the description instead, because a calendar cannot invite a name. |
| description | string | – | Body text |
| duration_minutes | integer | yes | Length in minutes, at most 1440 |
| fold | string | – | Which occurrence of a time that happens twice because the clocks went back. Default 'first'. |
| gap | string | – | What to do with a time that does not exist because the clocks jumped forward: 'forward' takes the time after the jump, 'backward' the time before it. Without this, such a time is refused. |
| location | string | – | Where, or a meeting link |
| organizer_email | string | – | Your email address, written as the ORGANIZER so replies have somewhere to go. Leave it out and your shared business profile's email is used; with neither, the ORGANIZER line is omitted rather than fi… |
| organizer_name | string | – | Your display name for the ORGANIZER line |
| out_path | string | – | Where to write the .ics file; default meeting.ics in the data dir. Times are stored in UTC, so the invite lands at the right local time in every attendee's calendar with no time zone block to go stale |
| start | string | yes | Start time, read in `zone` unless it carries an offset |
| title | string | yes | Event title |
| zone | string | yes | Place the start time is given in |
No output schema declared.
No examples provided.
ics_forget Forget a calendar ~64
Remove one imported calendar by name and delete this server's local copy of its .ics, freeing a slot. Your own calendar and the source file are untouched. ics_import replaces a name in place.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | yes | The calendar name from calendars_list |
No output schema declared.
No examples provided.
ics_import Import a calendar (.ics) ~143
Call this tool to read a calendar export and keep it under a name. Give path (.ics file), text (contents), or url (public .ics/webcal feed; Pro). Google, Apple, Outlook exports read. Re-importing a name replaces it.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | yes | What to call this calendar, e.g. "work" or "family" |
| path | string | – | Path to a .ics file on this machine |
| text | string | – | The .ics file contents, pasted |
| url | string | – | Public https:// or webcal:// .ics feed. Fetched once, only because you asked; Pro feature |
No output schema declared.
No examples provided.
invoice_business_set Set your business details ~353
The ONE business profile for the whole suite: name, address, VAT id, bank details and defaults (currency, tax rate, terms, prefix, timezone). Saved to the shared profile every other server reads. Call it once, first.
| Name | Type | Req | Description |
|---|---|---|---|
| address | string | – | Postal address, newlines allowed |
| bank | string | – | Bank name / BIC |
| default_currency | string | – | ISO code, e.g. EUR, USD, JPY. Default EUR |
| default_tax_rate | number | – | Default VAT percent applied to items without their own rate |
| string | – | Your own email address. Leave it out unless the user gave it: no server ever fills an email from anything but this profile or an explicit argument | |
| iban | string | – | IBAN or account number for payment |
| invoice_prefix | string | – | Invoice number prefix, default INV (custom prefix is Pro) |
| logo_path | string | – | Path to a PNG or JPG logo (Pro) |
| name | string | yes | Your business or freelancer name |
| payment_terms_days | number | – | Default days until due. Default 14 |
| phone | string | – | Your own phone number. Same rule as email: only if the user gave it |
| tax_rate | number | – | Alias for default_tax_rate |
| timezone | string | – | IANA zone you work in, e.g. Europe/Warsaw. Shared with time-tracker (entries are stamped in it) and timezone (your home zone) |
| vat | number | – | Alias for default_tax_rate |
| vat_id | string | – | VAT / tax registration id |
| vat_rate | number | – | Alias for default_tax_rate |
No output schema declared.
No examples provided.
invoice_create Create an invoice ~243
Create an invoice from line items and return the record with its next, never-reused number. unit_price is in MAJOR units; lines are rounded then summed. One currency per invoice. Free: 3 a month.
| Name | Type | Req | Description |
|---|---|---|---|
| client | string | yes | Client name or id. Unknown names are added automatically |
| currency | string | – | Invoice currency, 3-letter ISO code. Defaults to the one currency every item agrees on, else your business default. Every line on one invoice must agree with it; a mix is refused with the exact conve… |
| discount_percent | number | – | Discount percent applied to every line before tax, 0-100 |
| due_days | number | – | Days until due, defaults to your payment terms |
| issue_date | string | – | YYYY-MM-DD, defaults to today |
| items | array | yes | Line items. Amounts are held as integer minor units and every line is rounded first, then summed, so the printed lines can never disagree with the total. A line may carry its own currency |
| notes | string | – | Free text printed under the totals |
No output schema declared.
No examples provided.
invoice_delete Delete an invoice from the register ~79
Delete an invoice entered wrongly, by id or reference: the record, its payments and its letter history. The id is not reissued, so a gap in the DUN series is the record that a deletion happened.
| Name | Type | Req | Description |
|---|---|---|---|
| invoice | string | yes | The chased invoice: its id (DUN-2026-0001) or its invoice reference |
No output schema declared.
No examples provided.
invoice_from_hours Invoice from hours ~405
Shortcut for the common case: bill one client for N hours at an hourly rate. Creates and returns a single-line invoice, converting the rate into target_currency when you supply fx_rates, and echoing back any entry_ids.
| Name | Type | Req | Description |
|---|---|---|---|
| client | string | yes | – |
| currency | string | – | Currency the rate is in. Without target_currency this is also the invoice currency |
| description | string | – | Line description, default 'Consulting services' |
| discount_percent | number | – | – |
| due_days | number | – | – |
| entry_ids | array | – | Time-tracker entry ids these hours came from (the entry_ids invoice_summary returns). Echoed back with the new invoice number so you can call entry_mark_billed |
| fx_rates | object | – | Conversion rates, the same pair expense_to_invoice takes: fx_rates maps the RATE's currency to the number of target units one of it buys, meaning 1 unit of that currency = X units of target_currency,… |
| hours | number | yes | – |
| issue_date | string | – | – |
| notes | string | – | – |
| rate | number | yes | Hourly rate in major units, expressed in currency (or the business default currency) |
| round_total | boolean | – | D-R46: when converting with fx_rates, round the line's TOTAL to the exact converted amount instead of rounding the hourly rate to cents first. Default false keeps the D-R24 basis (unit price x hours… |
| target_currency | string | – | Issue the invoice in this currency instead, converting the rate. Needs fx_rates for the rate currency |
| tax_rate | number | – | – |
No output schema declared.
No examples provided.
invoice_generate_due Generate the invoices that are due ~161
Create a real invoice in the invoice server for every schedule occurrence on or before as_of that has not been invoiced yet, and render each PDF. Returns what was created, what was skipped and what is still due.
| Name | Type | Req | Description |
|---|---|---|---|
| as_of | string | – | YYYY-MM-DD, defaults to today. Every occurrence on or before this date that has not been invoiced is billed. Idempotent: one invoice per schedule per period, keyed by the occurrence date, so running… |
| dry_run | boolean | – | List what would be created without creating anything. Default false. One run creates at most 60 invoices, oldest period first |
| schedule_id | string | – | Only this schedule. Free and unlimited on every tier |
No output schema declared.
No examples provided.
invoice_get Get one invoice ~49
Return the full stored record for one invoice number, including every line, tax breakdown, and the balance still open after any credit note issued against it (see credited_minor).
| Name | Type | Req | Description |
|---|---|---|---|
| number | string | yes | – |
No output schema declared.
No examples provided.
invoice_list List invoices ~88
List invoices by number: client, dates, currency, subtotal, discount, tax lines, total, status, paid, credited and the balance still due after any credit note. Filter by status, client and date range.
| Name | Type | Req | Description |
|---|---|---|---|
| client | string | – | – |
| from | string | – | YYYY-MM-DD inclusive |
| status | string | – | – |
| to | string | – | YYYY-MM-DD inclusive |
No output schema declared.
No examples provided.
invoice_mark_paid Mark an invoice paid ~156
Record a payment on one invoice. amount is in MAJOR units and ADDS to what is paid, never replaces it; omit it to settle the rest. An overpayment is refused, naming the open balance.
| Name | Type | Req | Description |
|---|---|---|---|
| amount | number | – | Amount received in major units, ADDED to what is already paid on this invoice. Omit to pay off the remaining balance in full |
| method | string | – | How it was paid, e.g. bank transfer, card. Stored on this payment's row |
| number | string | yes | – |
| paid_date | string | – | YYYY-MM-DD, defaults to today |
| reference | string | – | Bank reference or transaction id for this payment. Stored on this payment's row |
No output schema declared.
No examples provided.
invoice_pdf Render invoice PDF ~164
Call this tool to write one stored invoice as an A4 PDF and return the path: issuer, BILL TO, dates, items, taxes and totals. Free stamps a credit line and no logo; Pro renders it unbranded with your logo.
| Name | Type | Req | Description |
|---|---|---|---|
| number | string | yes | Invoice number to render, as returned by invoice_create |
| out_path | string | – | Where to write the PDF; defaults to <data dir>/pdf/<number>.pdf. The page carries the issuer block, the BILL TO client block, dates, an item table with wrapped descriptions, subtotal, discount, one t… |
No output schema declared.
No examples provided.
invoice_register Register an unpaid invoice to chase ~313
Start chasing an unpaid invoice: register the client, the invoice reference, the amount in integer cents, the currency and the due date, and get the three-letter escalation schedule (reminder 1, reminder 2, final notice) with the date each falls due. Free tier: 3 unpaid invoices chased at once.
| Name | Type | Req | Description |
|---|---|---|---|
| amount_minor | integer | yes | The invoice amount in whole minor units (integer cents). 125000 is USD 1,250.00 |
| client | string | yes | Who owes the money, e.g. Acme Ltd |
| currency | string | yes | ISO code the invoice was issued in |
| due | string | yes | The date payment fell due, YYYY-MM-DD. The ladder is anchored to this date |
| duplicate_ok | boolean | – | Register even though an identical invoice is already on the register. Default false |
| gaps | array | – | Days after the due date at which reminder 1, reminder 2 and the final notice fall due, strictly increasing. Default [7, 14, 21] |
| issued | string | – | The date the invoice was issued, YYYY-MM-DD, for the letter's reference line |
| late_fee_percent_per_month | number | – | Late payment interest your terms allow, percent per month, simple and pro-rata. When set, reminder 2 and the final notice state the accrued figure |
| note | string | – | – |
| reference | string | yes | The invoice number being chased, e.g. INV-1042 |
No output schema declared.
No examples provided.
invoice_status The full state of one chased invoice ~99
One chased invoice in full: what was billed, what has been paid and what is still owed, every letter sent with its date, the escalation schedule with each stage's state, and what happens next and when.
| Name | Type | Req | Description |
|---|---|---|---|
| invoice | string | yes | The chased invoice: its id (DUN-2026-0001) or its invoice reference |
| on | string | – | The date to judge lateness against, YYYY-MM-DD. Default today |
No output schema declared.
No examples provided.
invoice_summary Invoice summary ~182
Turn tracked billable time into invoice lines for one project: hours, hourly rate, amount per task and the total, one line per rate so two rates never average. Hours already marked billed are left out. Free: last 7 days.
| Name | Type | Req | Description |
|---|---|---|---|
| from | string | yes | ISO date/time start of the billing period. Free covers the last 7 days; Pro invoices any period from the full history. |
| project | string | yes | Project or client to invoice |
| to | string | yes | ISO date/time end of the billing period. Free covers the last 7 days; Pro invoices any period from the full history. |
| unbilled_only | boolean | – | Default true: hours already put on an invoice (entry_mark_billed) are left out, so the same hours are never billed twice. Pass false to see the whole period including invoiced work. |
No output schema declared.
No examples provided.
job_card_create Open a job card ~197
Open a job card for a job your crew is taking on and return its JC-YYYY-NNNN number: the client, the site, what the job is, the currency and when it is scheduled. Free tier: 10 active cards; archiving a finished job frees its slot.
| Name | Type | Req | Description |
|---|---|---|---|
| client | string | yes | Who the job is for, e.g. Kowalski bathroom refit, or Acme Ltd |
| currency | string | yes | ISO code the rates and prices are in |
| description | string | yes | What the job is, e.g. Replace the consumer unit and certify |
| note | string | – | – |
| scheduled_date | string | – | The date the crew is due on site, YYYY-MM-DD. May be in the future; it is a plan, not a log |
| site | string | yes | Where the job is, e.g. 14 Nowa Street, flat 3 |
No output schema declared.
No examples provided.
job_card_delete Delete an empty job card ~87
Delete a job card entered by mistake. One with labor or materials logged is refused, naming what it holds, because deleting it would lose the record of work done: archive it instead. The JC number is never reissued.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
No output schema declared.
No examples provided.
job_card_get Read one job card with its running totals ~89
Read one job card in full by JC number or client: every labor entry and every material used, the hours per worker, and the running totals -- labor, materials and grand total -- as integer cents with formatted amounts. Reads only.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
No output schema declared.
No examples provided.
job_card_list List job cards ~94
List job cards newest first: client, site, status, hours logged, and the labor, materials and grand totals in cents. Filter by status and by client. Totals are kept per currency, never mixed.
| Name | Type | Req | Description |
|---|---|---|---|
| client | string | – | Only cards whose client contains this text, case-insensitive |
| status | string | – | Only cards at this status: open, in_progress, done, invoiced, archived |
No output schema declared.
No examples provided.
job_card_log_labor Log hours on a job card ~222
Log hours worked on a job card: who did the work, the day, the hours and the hourly rate in whole cents, with a note on what was done. The line value is hours times rate, rounded half-up to the cent, fixed the moment it is logged.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
| date | string | yes | The day the work was done, YYYY-MM-DD. A future date is refused |
| hours | number | yes | Hours worked, to the hundredth, e.g. 7.5 or 3.25. One entry is one worker's day at most |
| note | string | – | What was done, e.g. First fix, kitchen ring main |
| rate_cents | integer | yes | The hourly rate in whole cents. 4500 is 45.00 an hour |
| worker | string | yes | Who did the work, e.g. Anna |
No output schema declared.
No examples provided.
job_card_log_material Log materials used on a job card ~200
Log materials used on a job card: the item, the day it went in, the quantity and the unit cost in whole cents. The line value is quantity times unit cost, rounded half-up to the cent, fixed the moment it is logged.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
| date | string | yes | The day it went in, YYYY-MM-DD. A future date is refused |
| item | string | yes | What went into the job, e.g. Copper pipe 15mm, or Consumer unit 10-way |
| note | string | – | – |
| qty | number | yes | How many, to the thousandth, e.g. 2 or 0.5 |
| unit_cost_cents | integer | yes | What one costs in whole cents. 1299 is 12.99 |
No output schema declared.
No examples provided.
job_card_print Render the card for the client to sign ~112
Render a job card ready to print and hand to the client: the labor, the materials, the totals and a signature line for client sign-off. Markdown, or self-contained HTML that needs nothing from the network. Writes nothing.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
| format | string | – | markdown (default) or html. The HTML carries its own styling and references nothing external |
No output schema declared.
No examples provided.
job_card_summary Summarize a day or a week ~105
Hours and value for a day or a week: the job cards touched, the hours per worker, and the labor, materials and total value, kept per currency. A week runs Monday to Sunday. Touched means a labor or material entry dated inside the window.
| Name | Type | Req | Description |
|---|---|---|---|
| date | string | – | A date inside the window, YYYY-MM-DD. Default today |
| span | string | – | day (default) is the date itself; week is the Monday to Sunday containing it |
No output schema declared.
No examples provided.
job_card_update_status Move a job card one step ~156
Move one job card exactly one step: open, in_progress, done, invoiced, archived, stamping the date and an optional note into its history. A skipped or backwards step is refused and nothing is written. Archiving a finished job frees a free-tier slot.
| Name | Type | Req | Description |
|---|---|---|---|
| card | string | yes | The job card id, e.g. JC-2026-0003, or the client name when only one card has it |
| date | string | – | The date to stamp the step with, YYYY-MM-DD. Default today |
| note | string | – | – |
| status | string | yes | The next step for this card: open, in_progress, done, invoiced, archived. in-progress is accepted too |
No output schema declared.
No examples provided.
letter_render Generate the chase letter for the current stage ~209
Chase an unpaid invoice: generate the letter for the current stage of the ladder -- reminder 1 (polite), reminder 2 (firm, with the late fees note) or the final notice (before-action wording) -- as Markdown or as self-contained printable HTML. Nothing is emailed or sent anywhere: this server produces the letter text, and sending it is your act. Record the sending with letter_sent so the ladder advances.
| Name | Type | Req | Description |
|---|---|---|---|
| format | string | – | markdown (default) or html: a self-contained printable page with no external anything |
| invoice | string | yes | The chased invoice: its id (DUN-2026-0001) or its invoice reference |
| on | string | – | The letter's date, YYYY-MM-DD; late fees accrue to it and the final-notice deadline is 7 days after it. Default today |
| stage | number | – | Render a specific stage instead of the one currently due, to preview or to re-issue a letter already sent |
No output schema declared.
No examples provided.
letter_sent Record that a letter was sent ~119
Record that a chase letter was actually sent, with its date, so the ladder advances to the next stage. Letters go out in order: reminder 2 cannot be recorded before reminder 1. Returns what is due next and when.
| Name | Type | Req | Description |
|---|---|---|---|
| invoice | string | yes | The chased invoice: its id (DUN-2026-0001) or its invoice reference |
| sent | string | – | The date it was sent, YYYY-MM-DD. Default today |
| stage | number | – | Which letter went out. Default the lowest unsent stage |
No output schema declared.
No examples provided.
license_activate ~61
Activate one Pro key on every connected server in a single call and return which accepted it. Any rejection fails the whole call, because one server on Pro and another free is invisible to the user.
| Name | Type | Req | Description |
|---|---|---|---|
| key | string | yes | License key from the checkout confirmation page |
No output schema declared.
No examples provided.
license_status ~46
Report the licence tier of every server connected to this bundle, one row each, plus the single checkout URL that upgrades them all. A server that failed to start is reported with its error.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
next_event Next event ~67
The first event not yet started, within the next 366 days, across every imported calendar or one you name. Returns title, times in your zone, how long until it starts, location, attendees and its id.
| Name | Type | Req | Description |
|---|---|---|---|
| calendar | string | – | One calendar name; default every imported calendar |
No output schema declared.
No examples provided.
now Current time in zones ~74
The current time in one or more places, each with the zone it resolved to and the local date, time and offset, under one UTC instant. Accepts IANA zones, cities, countries and abbreviations.
| Name | Type | Req | Description |
|---|---|---|---|
| zones | array | – | Places or IANA zones, e.g. ['Warsaw','New York','India'] |
No output schema declared.
No examples provided.
overdue_list List overdue invoices ~85
Every unpaid invoice past its due date: how many days late, what is still owed, which letters have gone out, and what is due next and when. Sorted by days late, worst first.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | – | Maximum rows, default and ceiling 2000 |
| on | string | – | The date to judge lateness against, YYYY-MM-DD. Default today |
No output schema declared.
No examples provided.
overdue_report Overdue report ~62
List every invoice not paid in full whose due date has passed, worst first, with days overdue and the amount, then a total per currency. Free. Use invoice_list for everything still open.
| Name | Type | Req | Description |
|---|---|---|---|
| as_of | string | – | YYYY-MM-DD, defaults to today |
No output schema declared.
No examples provided.
overlap Daily working-hours overlap ~117
The window each day when every listed place is inside working hours. Computed on a real date, so a DST week that widens or narrows the overlap is reflected.
| Name | Type | Req | Description |
|---|---|---|---|
| date | string | – | Date to compute on, YYYY-MM-DD, default today |
| work_end | string | – | Local working day end, default 17:00 |
| work_start | string | – | Local working day start, default 09:00 |
| zones | array | yes | Places, e.g. ['Warsaw','New York','Bangalore'] |
No output schema declared.
No examples provided.
payment_record Record a payment received ~137
Record money received against a chased invoice, in whole MINOR units: a part payment lowers what is still chased, a payment that covers the balance closes the ladder and frees the free-tier slot. Returns the outstanding amount.
| Name | Type | Req | Description |
|---|---|---|---|
| amount_minor | integer | yes | What was received, in whole minor units |
| date | string | – | The date the money arrived, YYYY-MM-DD. Default today |
| invoice | string | yes | The chased invoice: its id (DUN-2026-0001) or its invoice reference |
| note | string | – | How it was paid, e.g. Bank transfer, or what it was against |
No output schema declared.
No examples provided.
pdf_count Count pages in several PDFs ~65
Page count per file plus the total, for any number of PDFs, with how many were readable. A file that cannot be read is reported on its own row and the others still count. Read-only. Free and unlimited.
| Name | Type | Req | Description |
|---|---|---|---|
| paths | array | yes | Paths to the PDF files |
No output schema declared.
No examples provided.
pdf_info Inspect a PDF ~83
Call this tool to inspect a PDF: page count, page sizes in points/mm, paper name, metadata (title, author, producer, dates) and whether it is encrypted. Read-only, never modifies the file. Free tier: unlimited.
| Name | Type | Req | Description |
|---|---|---|---|
| path | string | yes | Path to the PDF file. ~ is expanded; a relative path is resolved against the working directory |
No output schema declared.
No examples provided.
pdf_merge Merge PDFs into one file ~119
Call this tool to join several PDFs into one, in the order given. Page sizes are kept as-is, so a merged file may have mixed sizes, and the answer says so. Inputs are never modified. Free tier: up to 5 files per merge.
| Name | Type | Req | Description |
|---|---|---|---|
| out_path | string | yes | Where to write the merged PDF |
| overwrite | boolean | – | Replace out_path if a file is already there. Default false: an existing file is never overwritten |
| paths | array | yes | The PDFs to join, in the order they should appear |
No output schema declared.
No examples provided.
What is the io.github.theluckystrike/office-suite-time-invoice-expense… MCP server?
io.github.theluckystrike/office-suite-time-invoice-expense… is an MCP server listed in the public MCP registry as io.github.theluckystrike/office-suite-time-invoice-expense…. One MCP server for the whole freelancer office: time tracking, price watching, spreadsheets, PDF. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.22.0/office-suite.mcpb).
Is the io.github.theluckystrike/office-suite-time-invoice-expense… MCP server safe to use?
io.github.theluckystrike/office-suite-time-invoice-expense… scores 46 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the io.github.theluckystrike/office-suite-time-invoice-expense… MCP server expose?
io.github.theluckystrike/office-suite-time-invoice-expense… exposes 158 tools: timer_start, timer_stop, timer_status, entry_add, entry_list, and 153 more. Their descriptions and schemas cost roughly 23,736 tokens of context every time the server is loaded.
What licence is the io.github.theluckystrike/office-suite-time-invoice-expense… MCP server under?
io.github.theluckystrike/office-suite-time-invoice-expense… declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.