Skip to content
LinkPress™

Collections

Knowledge Cards

Structured concept summaries — frameworks, models, and tools — built for AI citation and quick reference.

Knowledge Cards are structured reference entries for business frameworks, mental models, analytical tools, and management concepts. Unlike articles, they are built for scanning and citation rather than linear reading. Each card includes key points, references, and optional tools and a Mermaid diagram — structured so that AI assistants and search engines can extract precise answers.

Cards live in content/cards/ and are displayed at /cards/[slug].


Frontmatter Fields

FieldTypeRequiredNotes
entity'person' | 'organization'NoPrimary author type. Defaults to 'person'. Set to 'organization' for org-attributed cards.
titlestringYesMax 120 characters. The concept name, e.g. 'McKinsey 7-S Framework'.
descriptionstringYesMax 500 characters. A one-paragraph definition: what it is, what it’s used for.
publishedAtdateYesPublication date.
updatedAtdateNoDate of last revision.
authorsstring[]NoPeople slugs. Use when entity: person.
organizationsstring[]NoOrganisation slugs. Use when entity: organization.
tagsstring[]NoTopical tags.
industriesstring[]NoRelevant industry verticals.
imagestringNoBare filename from public/articles/, e.g. '7s-framework.webp'.
imageAltstringNoAlt text for the framework diagram or illustration.
urlURLNoCanonical external source (original paper, book, or official reference).
keyPointsstring[]No4–8 bullet-point facts or properties of the concept. Rendered prominently.
referencesobject[]NoAcademic papers, books, or articles: { title, url }.
toolsobject[]NoSoftware tools, templates, or calculators: { title, url }.
mermaidMarkdownstringNoA Mermaid diagram definition rendered as an SVG on the card.
featuredbooleanNoPin to the top of card listings. Default false.
draftbooleanNotrue hides from public listings. Default false.

Template

---
title: ''
description: ''
publishedAt: 2026-01-01
authors:
  - author-slug
tags: []
industries: []
image: 'framework-name.webp'
imageAlt: 'Diagram illustrating [framework name]'
url: ''
keyPoints:
  - ''
  - ''
references:
  - title: ''
    url: ''
tools:
  - title: ''
    url: ''
mermaidMarkdown: ''
featured: false
draft: true
---

Opening paragraph elaborating the definition and origin of the concept.

## When to Use It

Describe the problem or decision scenario this framework is designed for.

## How It Works

Step-by-step or component-by-component explanation.

## Common Pitfalls

What teams get wrong when applying this framework.

## Example

A concrete, realistic application in a business context.

Complete Sample

---
title: 'MECE Principle'
description: 'A structuring principle from McKinsey that ensures analytical categories are Mutually Exclusive and Collectively Exhaustive — no overlaps, no gaps. Used to organise problem decomposition, slide structures, and strategic frameworks.'
publishedAt: 2026-02-20
authors:
  - mithun-sridharan
tags:
  - Problem Solving
  - Consulting
  - Analytical Frameworks
  - McKinsey
industries:
  - Management Consulting
  - Financial Services
  - Strategy
image: 'mece-principle.webp'
imageAlt: 'Venn diagram showing mutually exclusive and collectively exhaustive categories'
url: 'https://www.mckinsey.com/capabilities/strategy-and-corporate-finance/our-insights'
keyPoints:
  - 'MECE stands for Mutually Exclusive, Collectively Exhaustive.'
  - 'Mutually Exclusive means no item belongs to more than one category.'
  - 'Collectively Exhaustive means every possible item fits into at least one category.'
  - 'It was codified by Barbara Minto at McKinsey in the 1970s as part of the Pyramid Principle.'
  - 'It is the backbone of issue trees, slide structures, and any structured problem decomposition.'
  - 'Violating MECE causes double-counting (overlaps) or blind spots (gaps) in analysis.'
references:
  - title: 'The Minto Pyramid Principle — Barbara Minto'
    url: 'https://www.amazon.com/Minto-Pyramid-Principle-Logic-Thinking/dp/0960191038'
  - title: 'MECE in Business Analysis — Corporate Finance Institute'
    url: 'https://corporatefinanceinstitute.com/resources/management/mece'
tools:
  - title: 'Issue Tree Template — Miro'
    url: 'https://miro.com/templates/issue-tree/'
mermaidMarkdown: |
  graph TD
    P[Root Problem] --> A[Category A]
    P --> B[Category B]
    P --> C[Category C]
    A --> A1[Sub-issue A1]
    A --> A2[Sub-issue A2]
    B --> B1[Sub-issue B1]
    B --> B2[Sub-issue B2]
    C --> C1[Sub-issue C1]
featured: false
draft: false
---

The MECE principle is the structuring discipline behind every well-built consulting deck and every clearly reasoned memo. It was codified by Barbara Minto at McKinsey in the 1970s and remains the single most transferable analytical tool from the consulting profession to the broader business world.

The name is an acronym: **Mutually Exclusive** means no single piece of information fits into more than one category. **Collectively Exhaustive** means every relevant piece of information fits into at least one category. Together they ensure that an analysis has no double-counting and no blind spots.

## When to Use It

Apply MECE whenever you need to decompose a problem, organise a slide structure, or design a survey. The test is simple: could any item in your framework belong to two categories? (Mutually Exclusive violation.) Is there any realistic scenario your framework cannot account for? (Collectively Exhaustive violation.) If either answer is yes, the structure needs redesign.

## How It Works

MECE thinking starts with the **issue tree**: a hierarchical decomposition of a problem into its constituent drivers. At each level, the branches should be MECE — the sub-issues at any one level should not overlap and should fully cover the parent issue.

A classic example: decomposing revenue decline.

- **Volume** (units sold)
- **Price** (revenue per unit)

These two categories are MECE: every change in revenue can be attributed to volume, price, or their interaction — but only once.

A non-MECE example: splitting revenue into "new customers," "returning customers," and "enterprise customers." An enterprise customer who is also new appears in two categories. The categories are not mutually exclusive.

## Common Pitfalls

**Over-engineering the tree.** MECE is a discipline, not an end in itself. A three-level issue tree that takes a week to build is a distraction from the analysis itself.

**Confusing exhaustiveness with completeness.** "Collectively Exhaustive" means your categories cover all possibilities in principle — not that you have data for all of them. Leave placeholders rather than artificially narrowing the frame to match available data.

**Applying it to creative work.** MECE is a structuring tool for analytical decomposition, not a constraint on brainstorming. The ideas come first; MECE organises them afterward.

## Example

A team is asked why customer churn has increased. A non-MECE decomposition might look at "pricing complaints," "support quality," and "competitor pricing" — three categories that overlap (competitor pricing affects whether customers feel your price is fair). A MECE decomposition separates **push factors** (reasons to leave) from **pull factors** (reasons a competitor attracted them), then decomposes each branch cleanly.