api-patterns
3CX's native PBX MCP server: the per-PBX endpoint shape (every PBX is its own FQDN and its own OAuth authorization server — there is no shared mcp.3cx.com),…
Clio time and expense activities logged against a matter: the activities domain's create-only lifecycle, the billing-read / time-entry-write split, and why billing mutations are out of scope for v1.
$ npx -y skills add wyre-technology/msp-claude-plugins --skill time-billing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/time-billingContext preview
The summary Claude sees to decide when to auto-load this skill.
Clio time and expense activities logged against a matter: the activities domain's create-only lifecycle, the billing-read / time-entry-write split, and why billing mutations are out of scope for v1.
name: "Clio Time & Billing" description: > Clio time and expense activities logged against a matter: the activities domain's create-only lifecycle, the billing-read / time-entry-write split, and why billing mutations are out of scope for v1. when_to_use: >- When logging a time entry, logging an expense, or looking up bill status in Clio. Use when: clio time entry, clio activity, clio billable hours, clio expense, clio bill, clio invoice, clio billing, or clio log time.
Clio splits billing-adjacent work into two domains with very different permissions, and the split is deliberate:
| Domain | Tools | Can you write? | |---|---|---| | **activities** | `clio_activities_list`, `clio_activities_get`, `clio_activities_create` | Create only — no update, no delete | | **bills** | `clio_bills_list`, `clio_bills_get` | Read-only |
Both domains reference `matter_id` — activities are logged *against* a matter, and bills are generated from a matter's unbilled activities. See the [api-patterns skill](../api-patterns/SKILL.md) for the full matters-as-hub picture.
"Log time", "the invoice", and "the bill" are the most heavily overloaded phrases in this marketplace, and every one of them means something else outside Clio:
in the PSA; use `autotask-time-entries`, `connectwise-psa-time-entries`, or `halopsa-tickets`. A Clio activity is billable legal work against a matter, not service-desk labour.
inside Clio from unbilled activities and is read-only here. Accounting invoices are `qbo-invoices` or `xero-invoices`, and a Clio bill never appears in either until someone posts it.
is possible through this integration, by design. See `clio-api-patterns` for the v1 scope limits and the reasoning; do not route the request to another Clio domain looking for a way around.
An **activity** is either a time entry or an expense entry logged against a matter. Typical fields:
amount or unit count
Use `clio_activities_create` with `matter_id`, a description, and the time quantity. Before creating:
1. **Resolve the matter first** — don't create a time entry against a guessed or partially-matched matter. If the user names a client but not a specific matter, and the client has multiple matters, ask which one. 2. **Get the description right** — time entry descriptions often end up on client-facing invoices; write them the way the attorney would want a client to read them, not as an internal shorthand, unless told otherwise. 3. **Confirm billable status** if it's ambiguous — defaulting non-billable work to billable (or vice versa) has real revenue/client-relationship consequences.
See [/log-time](../../commands/log-time.md) for the command-level workflow.
Once created, an activity can't be modified or removed through this integration. Corrections happen in Clio directly, which preserves Clio's own edit history for what is, in most firms, a billing-relevant record. If a user asks you to "fix" a time entry you just logged, say plainly that correcting or removing it needs to happen in Clio — don't attempt a workaround (e.g. creating an offsetting negative entry) without the user explicitly asking for that specific approach.
`clio_bills_list` / `clio_bills_get` let you look up bill status, amounts, and which matter a bill was generated from — but you cannot generate, edit, void, or send a bill through this integration.
Generating or modifying a bill correctly requires trust-accounting rigor this integration doesn't attempt: IOLTA/trust compliance, correct application of retainers, avoiding double-billing across overlapping billing cycles, and firm-specific billing rules (flat fee vs. hourly vs. contingency) that vary matter to matter. Getting this wrong isn't a cosmetic bug — it's a compliance and client-trust problem. So v1 reads bills for context (e.g. "has this matter been billed recently, and for how much") and leaves all billing actions to Clio's own billing workflow, where a human with full context runs it.
When a user asks you to "send an invoice" or "write off this bill," explain that billing actions aren't available through this integration and point them to Clio directly.
A typical flow: log time against a matter (`clio_activities_create`), then later check whether that matter's unbilled activity has made it onto a bill (`clio_bills_list` filtered by `matter_id`). These are two separate, one-directional operations — there's no tool that ties a specific activity to the bill it ended up on; you can only observe bill-level totals and status.
One command to supercharge Claude Code for MSP workflows. Then restart Claude Code. That's it. Documentation: mcp.wyre.ai
Repo: wyre-technology/msp-claude-plugins
3CX's native PBX MCP server: the per-PBX endpoint shape (every PBX is its own FQDN and its own OAuth authorization server — there is no shared mcp.3cx.com),…
3CX's live-operations surface: read-only visibility into active calls, recordings, voicemail, department and queue membership, and forwarding/presence…
3CX's read-only directory surface: resolving a caller by email or by exact extension, searching the PBX's own phonebooks, searching contacts synced from an…
3CX's system-and-configuration surface: server time, PBX event log and application log search, service status, database schema and the read-only SELECT-only…
Abnormal Security abuse mailbox cases: user-reported email submissions, case statuses and judgments, the case lifecycle, bulk and remediation actions, and…
Abnormal Security message analysis: message retrieval, email header inspection, attachments, sender reputation, delivery context, and SPF/DKIM/DMARC…