Xero + SLI MSP Financial Analysis
Query Xero Accounting data through the Service Leadership Index (SLI) benchmark framework. Produce actionable management accounts, not just reports.
Architecture
This skill works with the xero-accounting-mcp npm package — a full-passthrough MCP server for the Xero Accounting API. The MCP server provides 23 tools (3 schema discovery + 1 generic passthrough + 19 convenience). This skill tells you how to use those tools to produce MSP-specific financial analysis.
If the MCP server isn't configured, guide the user through setup:
Set up the Xero Accounting MCP server. The npm package is xero-accounting-mcp.
1. Ask whether they want Claude Code, Claude Desktop, or Claude Cowork.
2. Help them get Xero credentials from https://developer.xero.com/app/manage
3. Add the MCP config to the appropriate settings file.
Quick Start — Xero MCP Tools
Schema Discovery (always available)
xero_get_schema_overview — 138 endpoints, API version, categories
xero_get_endpoint_details — drill into specific endpoints by regex
xero_search_endpoints — keyword search
Key Reports
xero_get_reports_profit_and_loss — with periods, tracking, date ranges
xero_get_reports_balance_sheet — as-at date, comparative periods
xero_get_reports_budget_summary — budget vs actuals
xero_get_reports_executive_summary — key metrics at a glance
xero_get_reports_trial_balance — TB as-at date
xero_get_reports_bank_summary — all bank balances
xero_get_reports_aged_payables / xero_get_reports_aged_receivables — by contact
Data Endpoints
xero_get_organisation — legal name, currency, year end
xero_get_accounts — chart of accounts
xero_get_invoices — paginated, filterable
xero_get_contacts — paginated, filterable
xero_get_journals — general ledger (offset-based pagination)
xero_get_tracking_categories — tracking categories + options
xero_get_budgets — list or single budget detail
Generic Passthrough
xero_api_call — hit ANY Xero endpoint: method, path, body, queryParams
Xero Report Parsing
All Xero reports return { Reports: [{ Rows: [...] }] }:
RowType: "Header" — column headers
RowType: "Section" — group with Title and nested Rows
RowType: "Row" — data row, Cells: [{Value: "Name"}, {Value: "1234.56"}]
RowType: "SummaryRow" — totals
SLI Framework — MSP Financial Benchmarks
The Service Leadership Index is the gold standard for MSP financial benchmarking. This skill maps Xero data to SLI categories and benchmarks every number against best-in-class targets.
Core Principle
Gross Margin − Expenses = Profit — the only formula that matters.
Revenue Categories (map Xero accounts to these)
| SLI Category |
Code Range |
Description |
| Product Resale |
PR1–PR9 |
Hardware, software, cloud resale |
| Cloud Services Resale |
CL1–CL3 |
White-label and third-party branded |
| Hardware as a Service |
HA1 |
Monthly, client doesn't take title |
| Software Licenses (Own) |
SL1–SL4 |
Software you built/published |
| Infra — Technical Services |
I1–I6 |
Break/fix, staff aug, training |
| Infra — Professional Services |
I7–I13 |
Scoped projects: install, design |
| Infra — Managed Services |
I14–I26 |
SLA-based flat fee support |
| Infra — Shared Infrastructure |
I27–I31 |
Hosting, colo, ISP from your infra |
| Apps — Technical Services |
A1–A5 |
App dev T&M, training |
| Apps — Professional Services |
A6–A9 |
Custom app dev, packaged config |
| Apps — Managed Services |
A10–A15 |
ASP, app monitoring, DBA (SLA) |
| Commissions & Agency |
CA1–CA5 |
Third-party vendor fees |
8 Best-in-Class Financial Principles
- Revenue Ratio (per $1 managed service revenue): 40¢ cloud recurring, 35¢ physical product, 15¢ project labour
- GM Growth Rate must match or exceed revenue growth rate
- Profit %: Best-in-class MSPs target 18%+ profit (top 25th percentile)
- Gross Margin %: BIC target varies by model; MSP target ~42%
- Service Multiple: GM / Service delivery cost — target ≥1.4x
- Sales Multiple: Revenue / Sales expense — target ≥6x
- G&A %: Keep below 12% of revenue
- Revenue per employee: BIC target varies; MSP ~$150K–$200K
Key SLI Ratios to Calculate
| Ratio |
Formula |
BIC Target |
| Profit % |
Profit / Revenue |
≥18% |
| GM % |
Gross Margin / Revenue |
≥42% (MSP) |
| Service Multiple |
GM / (Service Delivery Cost) |
≥1.4x |
| Sales Multiple |
Revenue / Sales Expense |
≥6x |
| G&A % |
G&A Expense / Revenue |
≤12% |
| Revenue/Employee |
Total Revenue / FTE Count |
~$150–200K |
Management Accounts Workflow
This is NOT a bland accountant report. Every number gets context, every trend gets an explanation, every section ends with actions.
Data Collection
- Xero: P&L (month + YTD + prior year), Balance Sheet, Executive Summary, Aged Receivables
- Adjusted P&L (subtract owner drawings from profit — Xero doesn't track this automatically)
- Xero: Chart of Accounts + Tracking Categories for SLI mapping
- Optional: CRM pipeline (HubSpot/ConnectWise), PPC data, forecast model
Report Structure
| Section |
Purpose |
Data Sources |
| Executive Summary |
3 bullets: what happened, what's changing, what to do |
All |
| P&L — Standard View |
Month vs prior month vs prior year |
Xero |
| P&L — Adjusted View |
After owner drawings — the REAL cash picture |
Xero + drawings |
| Revenue Analysis |
By SLI category, vs targets, vs prior periods |
Xero mapped to SLI |
| Gross Margin Deep Dive |
GM% by service line vs SLI BIC |
Xero + SLI benchmarks |
| Client Health |
Top 10 by revenue, risers/fallers, concentration risk; for per-client GM tiers and "which clients need review" use the oracle-data skill (SLI-anchored filter → per-client lever diagnosis — Xero has no client-level GM) |
Xero contacts/invoices + oracle-data |
| Cash & Debtors |
Bank balance, aged receivables, debtor days |
Xero balance sheet |
| SLI Scorecard |
Key ratios vs BIC: profit%, GM%, service multiple |
Calculated vs SLI |
| Actions |
Numbered, assigned, with deadlines |
All |
Critical Rules
- Always show Adjusted profit (after owner drawings) — raw P&L is misleading
- Never report a number without context — "Revenue down 5%" is useless. "Revenue down 5% because Client X left, offset by £2K new business from PPC" is useful
- Compare to SLI benchmarks not just prior periods — "GM% is 46% (BIC target 42%)" tells you more than "GM% up 1%"
- Flag anomalies — any client billing >50% variance from their 3-month average gets called out
- End with actions — every report must answer "so what do I DO?"
Mapping Xero Accounts to SLI
Xero accounts map to SLI categories by account type and name patterns. See references/xero-sli-mapping.md for the full mapping guide.
Common mappings:
REVENUE + managed service contracts → I14–I26
REVENUE + break/fix/time → I1–I6
REVENUE + product resale → PR1–PR9
DIRECTCOSTS → COGS (cost of goods sold)
EXPENSE + sales staff → Sales expense (for Sales Multiple)
EXPENSE + admin staff → G&A (for G&A %)
Rate Limits
Xero enforces: 60 calls/min, 5,000/day, 5 concurrent. On 429, respect Retry-After.
Context Log Pattern
When producing recurring management accounts, maintain a running context log (datestamped entries) that captures:
- Client gains/losses and revenue impact
- Staff changes and salary adjustments
- Cost changes (new subscriptions, cancellations, renegotiated contracts)
- One-off events affecting that month's numbers
- Owner drawing patterns
This context log is THE key differentiator between a report and a management tool. Without it, you're just reading numbers. With it, you're providing insight.
QBRB Analysis — Quarterly Business Review Benchmarking
When a user provides a QBRB report or asks to "analyse this SLI report" or "read my QBRB", work through the 8 QBRB analysis areas in order. Each area has a specific question to answer and a diagnostic purpose.
Analysis Framework
Work through these 8 areas sequentially. For each area:
- State the key metric and its trend
- Compare against BIC targets
- Explain WHY the number is what it is (not just what it is)
- Identify the specific action needed
1. Balance Sheet Health
Question: Is the balance sheet strong enough to fund growth?
- Look at: cash position, current assets vs current liabilities, debt levels
- Red flags: negative equity, current ratio < 1.5, high debt-to-equity
- BIC: current ratio ≥ 2.0, minimal long-term debt
2. Revenue Income
Question: Is revenue growing, and is it the right kind of revenue?
- Look at: total revenue trend (quarter over quarter, year over year)
- Break down by SLI category: managed services vs product vs project
- Growing managed services revenue is the goal — product and project are less predictable
- Red flags: declining revenue, over-reliance on one revenue type
3. Revenue Mix
Question: Is the revenue mix shifting toward higher-value services?
- Calculate: each SLI category as a percentage of total revenue
- BIC revenue ratio (per $1 managed services): 40¢ cloud recurring, 35¢ physical product, 15¢ project labour
- Track quarterly shifts — is managed services % increasing? Is product resale declining?
- Red flags: managed services < 60% of total revenue, product resale > 40%
4. Gross Margin Income
Question: Are gross margin pounds growing, and growing faster than revenue?
- Look at: GM £ trend — must grow in absolute terms AND as a percentage
- If revenue grows 10% but GM only grows 5%, the business is moving backwards
- BIC: GM growth rate must match or exceed revenue growth rate
- Red flags: flat or declining GM £, GM growing slower than revenue
5. Gross Margin Percentage
Question: Is the business controlling cost of delivery and pricing for value?
- GM% = (Revenue − Direct Costs) / Revenue × 100
- For service revenue specifically, low GM% often means quality problems — more free re-work eating margin
- BIC: MSP target ≥ 42%
- Red flags: GM% declining over time, service GM% < 40%
6. Operating Expenses
Question: Are we spending on the right things and is spend proportional to the business we're running?
- Break into: Sales & Marketing, Admin & Management Payroll, Total OpEx
- Lower OpEx £ is NOT always better — under-investing in sales kills growth
- It is not possible to simply cut your way to prosperity: there must be growth as well
- BIC: Sales expense ≤ 15% of revenue, G&A ≤ 12% of revenue
7. Operating Expenses as a Percentage of GM
Question: Is the business growing GM faster than OpEx — or are expenses eating all the margin?
- OpEx % of GM = Total OpEx / Gross Margin × 100
- This is the key efficiency ratio: it tells you whether every £ of GM is being consumed by overhead
- BIC: OpEx ≤ 70% of GM (leaving ≥ 30% for EBITDA)
- Trend must be improving (decreasing) or stable — rising OpEx/GM ratio is a red flag even if absolute GM is growing
8. EBITDA and Adjusted EBITDA Percentage
Question: Is the business generating real shareholder value?
- EBITDA = GM − Total OpEx (essentially bottom-line profit)
- Adjusted EBITDA = EBITDA with owner compensation normalised to market rate
- EBITDA £ = ability to scale (absolute size of the profit pile)
- EBITDA % = ability to operate efficiently (profit as a percentage of revenue)
- Adjusted EBITDA % deserves as much or more attention than raw EBITDA % — it shows true operational efficiency
- BIC: EBITDA ≥ 18%, Adjusted EBITDA ≥ 15%
- Red flags: declining EBITDA trend, EBITDA % < 10%, large gap between EBITDA and Adjusted EBITDA
QBRB Output Structure
After analysing all 8 areas, produce:
- Executive Summary — 3 bullets: what happened, what's changing, what to do
- 8-Area Scorecard — each area with: metric, trend, BIC comparison, status (🟢 on track / 🟡 watch / 🔴 action needed)
- Company Strengths — what's working well
- Questions — what you need to dig into (things the numbers don't explain)
- Actions — numbered, specific, with owners and deadlines
- Buy, Sell or Hold — overall assessment: is this business worth investing more in, selling, or maintaining?
QBRB vs Monthly Management Accounts
| Aspect |
Monthly Accounts |
QBRB Analysis |
| Frequency |
Monthly |
Quarterly |
| Depth |
Current month focus |
Trend analysis over 4–8 quarters |
| Purpose |
Operational decisions |
Strategic direction |
| Output |
Actions for this month |
Buy/Sell/Hold verdict |
| Benchmarking |
vs last month + BIC |
vs BIC + peer cohort + trend |
| Key question |
What happened? |
Where is this business going? |
1---2name: xero-sli-mcp3description: Analyse Xero financial data through the Service Leadership Index (SLI) benchmarks. Use when asked about MSP financial health, P&L analysis, gross margin, profit benchmarks, management accounts, SLI scoring, revenue ratios, or any Xero+SLI combined analysis. Requires the xero-accounting-mcp npm package.4license: MIT5---67# Xero + SLI MSP Financial Analysis89Query Xero Accounting data through the Service Leadership Index (SLI) benchmark framework. Produce actionable management accounts, not just reports.1011## Architecture1213This skill works with the `xero-accounting-mcp` npm package — a full-passthrough MCP server for the Xero Accounting API. The MCP server provides 23 tools (3 schema discovery + 1 generic passthrough + 19 convenience). This skill tells you *how to use those tools* to produce MSP-specific financial analysis.1415If the MCP server isn't configured, guide the user through setup:1617```18Set up the Xero Accounting MCP server. The npm package is xero-accounting-mcp.191. Ask whether they want Claude Code, Claude Desktop, or Claude Cowork.202. Help them get Xero credentials from https://developer.xero.com/app/manage213. Add the MCP config to the appropriate settings file.22```2324## Quick Start — Xero MCP Tools2526### Schema Discovery (always available)27- `xero_get_schema_overview` — 138 endpoints, API version, categories28- `xero_get_endpoint_details` — drill into specific endpoints by regex29- `xero_search_endpoints` — keyword search3031### Key Reports32- `xero_get_reports_profit_and_loss` — with periods, tracking, date ranges33- `xero_get_reports_balance_sheet` — as-at date, comparative periods34- `xero_get_reports_budget_summary` — budget vs actuals35- `xero_get_reports_executive_summary` — key metrics at a glance36- `xero_get_reports_trial_balance` — TB as-at date37- `xero_get_reports_bank_summary` — all bank balances38- `xero_get_reports_aged_payables` / `xero_get_reports_aged_receivables` — by contact3940### Data Endpoints41- `xero_get_organisation` — legal name, currency, year end42- `xero_get_accounts` — chart of accounts43- `xero_get_invoices` — paginated, filterable44- `xero_get_contacts` — paginated, filterable45- `xero_get_journals` — general ledger (offset-based pagination)46- `xero_get_tracking_categories` — tracking categories + options47- `xero_get_budgets` — list or single budget detail4849### Generic Passthrough50- `xero_api_call` — hit ANY Xero endpoint: method, path, body, queryParams5152## Xero Report Parsing5354All Xero reports return `{ Reports: [{ Rows: [...] }] }`:55- `RowType: "Header"` — column headers56- `RowType: "Section"` — group with Title and nested Rows57- `RowType: "Row"` — data row, Cells: `[{Value: "Name"}, {Value: "1234.56"}]`58- `RowType: "SummaryRow"` — totals5960## SLI Framework — MSP Financial Benchmarks6162The Service Leadership Index is the gold standard for MSP financial benchmarking. This skill maps Xero data to SLI categories and benchmarks every number against best-in-class targets.6364### Core Principle65**Gross Margin − Expenses = Profit** — the only formula that matters.6667### Revenue Categories (map Xero accounts to these)6869| SLI Category | Code Range | Description |70|---|---|---|71| Product Resale | PR1–PR9 | Hardware, software, cloud resale |72| Cloud Services Resale | CL1–CL3 | White-label and third-party branded |73| Hardware as a Service | HA1 | Monthly, client doesn't take title |74| Software Licenses (Own) | SL1–SL4 | Software you built/published |75| Infra — Technical Services | I1–I6 | Break/fix, staff aug, training |76| Infra — Professional Services | I7–I13 | Scoped projects: install, design |77| Infra — Managed Services | I14–I26 | SLA-based flat fee support |78| Infra — Shared Infrastructure | I27–I31 | Hosting, colo, ISP from your infra |79| Apps — Technical Services | A1–A5 | App dev T&M, training |80| Apps — Professional Services | A6–A9 | Custom app dev, packaged config |81| Apps — Managed Services | A10–A15 | ASP, app monitoring, DBA (SLA) |82| Commissions & Agency | CA1–CA5 | Third-party vendor fees |8384### 8 Best-in-Class Financial Principles85861. **Revenue Ratio** (per $1 managed service revenue): 40¢ cloud recurring, 35¢ physical product, 15¢ project labour872. **GM Growth Rate** must match or exceed revenue growth rate883. **Profit %**: Best-in-class MSPs target 18%+ profit (top 25th percentile)894. **Gross Margin %**: BIC target varies by model; MSP target ~42%905. **Service Multiple**: GM / Service delivery cost — target ≥1.4x916. **Sales Multiple**: Revenue / Sales expense — target ≥6x927. **G&A %**: Keep below 12% of revenue938. **Revenue per employee**: BIC target varies; MSP ~$150K–$200K9495### Key SLI Ratios to Calculate9697| Ratio | Formula | BIC Target |98|---|---|---|99| Profit % | Profit / Revenue | ≥18% |100| GM % | Gross Margin / Revenue | ≥42% (MSP) |101| Service Multiple | GM / (Service Delivery Cost) | ≥1.4x |102| Sales Multiple | Revenue / Sales Expense | ≥6x |103| G&A % | G&A Expense / Revenue | ≤12% |104| Revenue/Employee | Total Revenue / FTE Count | ~$150–200K |105106## Management Accounts Workflow107108**This is NOT a bland accountant report.** Every number gets context, every trend gets an explanation, every section ends with actions.109110### Data Collection1111. Xero: P&L (month + YTD + prior year), Balance Sheet, Executive Summary, Aged Receivables1122. Adjusted P&L (subtract owner drawings from profit — Xero doesn't track this automatically)1133. Xero: Chart of Accounts + Tracking Categories for SLI mapping1144. Optional: CRM pipeline (HubSpot/ConnectWise), PPC data, forecast model115116### Report Structure117118| Section | Purpose | Data Sources |119|---|---|---|120| Executive Summary | 3 bullets: what happened, what's changing, what to do | All |121| P&L — Standard View | Month vs prior month vs prior year | Xero |122| P&L — Adjusted View | After owner drawings — the REAL cash picture | Xero + drawings |123| Revenue Analysis | By SLI category, vs targets, vs prior periods | Xero mapped to SLI |124| Gross Margin Deep Dive | GM% by service line vs SLI BIC | Xero + SLI benchmarks |125| Client Health | Top 10 by revenue, risers/fallers, concentration risk; for per-client GM tiers and "which clients need review" use the `oracle-data` skill (SLI-anchored filter → per-client lever diagnosis — Xero has no client-level GM) | Xero contacts/invoices + `oracle-data` |126| Cash & Debtors | Bank balance, aged receivables, debtor days | Xero balance sheet |127| SLI Scorecard | Key ratios vs BIC: profit%, GM%, service multiple | Calculated vs SLI |128| Actions | Numbered, assigned, with deadlines | All |129130### Critical Rules131- **Always show Adjusted profit** (after owner drawings) — raw P&L is misleading132- **Never report a number without context** — "Revenue down 5%" is useless. "Revenue down 5% because Client X left, offset by £2K new business from PPC" is useful133- **Compare to SLI benchmarks** not just prior periods — "GM% is 46% (BIC target 42%)" tells you more than "GM% up 1%"134- **Flag anomalies** — any client billing >50% variance from their 3-month average gets called out135- **End with actions** — every report must answer "so what do I DO?"136137## Mapping Xero Accounts to SLI138139Xero accounts map to SLI categories by account type and name patterns. See [references/xero-sli-mapping.md](references/xero-sli-mapping.md) for the full mapping guide.140141Common mappings:142- `REVENUE` + managed service contracts → I14–I26143- `REVENUE` + break/fix/time → I1–I6144- `REVENUE` + product resale → PR1–PR9145- `DIRECTCOSTS` → COGS (cost of goods sold)146- `EXPENSE` + sales staff → Sales expense (for Sales Multiple)147- `EXPENSE` + admin staff → G&A (for G&A %)148149## Rate Limits150151Xero enforces: 60 calls/min, 5,000/day, 5 concurrent. On 429, respect `Retry-After`.152153## Context Log Pattern154155When producing recurring management accounts, maintain a running context log (datestamped entries) that captures:156- Client gains/losses and revenue impact157- Staff changes and salary adjustments158- Cost changes (new subscriptions, cancellations, renegotiated contracts)159- One-off events affecting that month's numbers160- Owner drawing patterns161162This context log is THE key differentiator between a report and a management tool. Without it, you're just reading numbers. With it, you're providing insight.163164## QBRB Analysis — Quarterly Business Review Benchmarking165166When a user provides a QBRB report or asks to "analyse this SLI report" or "read my QBRB", work through the 8 QBRB analysis areas in order. Each area has a specific question to answer and a diagnostic purpose.167168### Analysis Framework169170Work through these 8 areas sequentially. For each area:1711. State the key metric and its trend1722. Compare against BIC targets1733. Explain WHY the number is what it is (not just what it is)1744. Identify the specific action needed175176#### 1. Balance Sheet Health177**Question:** Is the balance sheet strong enough to fund growth?178- Look at: cash position, current assets vs current liabilities, debt levels179- Red flags: negative equity, current ratio < 1.5, high debt-to-equity180- BIC: current ratio ≥ 2.0, minimal long-term debt181182#### 2. Revenue Income183**Question:** Is revenue growing, and is it the right kind of revenue?184- Look at: total revenue trend (quarter over quarter, year over year)185- Break down by SLI category: managed services vs product vs project186- Growing managed services revenue is the goal — product and project are less predictable187- Red flags: declining revenue, over-reliance on one revenue type188189#### 3. Revenue Mix190**Question:** Is the revenue mix shifting toward higher-value services?191- Calculate: each SLI category as a percentage of total revenue192- BIC revenue ratio (per $1 managed services): 40¢ cloud recurring, 35¢ physical product, 15¢ project labour193- Track quarterly shifts — is managed services % increasing? Is product resale declining?194- Red flags: managed services < 60% of total revenue, product resale > 40%195196#### 4. Gross Margin Income197**Question:** Are gross margin pounds growing, and growing faster than revenue?198- Look at: GM £ trend — must grow in absolute terms AND as a percentage199- If revenue grows 10% but GM only grows 5%, the business is moving backwards200- BIC: GM growth rate must match or exceed revenue growth rate201- Red flags: flat or declining GM £, GM growing slower than revenue202203#### 5. Gross Margin Percentage204**Question:** Is the business controlling cost of delivery and pricing for value?205- GM% = (Revenue − Direct Costs) / Revenue × 100206- For service revenue specifically, low GM% often means quality problems — more free re-work eating margin207- BIC: MSP target ≥ 42%208- Red flags: GM% declining over time, service GM% < 40%209210#### 6. Operating Expenses211**Question:** Are we spending on the right things and is spend proportional to the business we're running?212- Break into: Sales & Marketing, Admin & Management Payroll, Total OpEx213- Lower OpEx £ is NOT always better — under-investing in sales kills growth214- It is not possible to simply cut your way to prosperity: there must be growth as well215- BIC: Sales expense ≤ 15% of revenue, G&A ≤ 12% of revenue216217#### 7. Operating Expenses as a Percentage of GM218**Question:** Is the business growing GM faster than OpEx — or are expenses eating all the margin?219- OpEx % of GM = Total OpEx / Gross Margin × 100220- This is the key efficiency ratio: it tells you whether every £ of GM is being consumed by overhead221- BIC: OpEx ≤ 70% of GM (leaving ≥ 30% for EBITDA)222- Trend must be improving (decreasing) or stable — rising OpEx/GM ratio is a red flag even if absolute GM is growing223224#### 8. EBITDA and Adjusted EBITDA Percentage225**Question:** Is the business generating real shareholder value?226- EBITDA = GM − Total OpEx (essentially bottom-line profit)227- Adjusted EBITDA = EBITDA with owner compensation normalised to market rate228- EBITDA £ = ability to scale (absolute size of the profit pile)229- EBITDA % = ability to operate efficiently (profit as a percentage of revenue)230- Adjusted EBITDA % deserves as much or more attention than raw EBITDA % — it shows true operational efficiency231- BIC: EBITDA ≥ 18%, Adjusted EBITDA ≥ 15%232- Red flags: declining EBITDA trend, EBITDA % < 10%, large gap between EBITDA and Adjusted EBITDA233234### QBRB Output Structure235236After analysing all 8 areas, produce:2372381. **Executive Summary** — 3 bullets: what happened, what's changing, what to do2392. **8-Area Scorecard** — each area with: metric, trend, BIC comparison, status (🟢 on track / 🟡 watch / 🔴 action needed)2403. **Company Strengths** — what's working well2414. **Questions** — what you need to dig into (things the numbers don't explain)2425. **Actions** — numbered, specific, with owners and deadlines2436. **Buy, Sell or Hold** — overall assessment: is this business worth investing more in, selling, or maintaining?244245### QBRB vs Monthly Management Accounts246247| Aspect | Monthly Accounts | QBRB Analysis |248|---|---|---|249| Frequency | Monthly | Quarterly |250| Depth | Current month focus | Trend analysis over 4–8 quarters |251| Purpose | Operational decisions | Strategic direction |252| Output | Actions for this month | Buy/Sell/Hold verdict |253| Benchmarking | vs last month + BIC | vs BIC + peer cohort + trend |254| Key question | What happened? | Where is this business going? |