/ 디렉터리 / 플레이그라운드 / Mck-ppt-design-skill
● 커뮤니티 likaku ⚡ 바로 사용

Mck-ppt-design-skill

제작: likaku · likaku/Mck-ppt-design-skill

Teach Claude to design McKinsey-style PowerPoints: 70 consultancy layout patterns, flat design discipline, built on python-pptx.

An Agent Skill that gives Claude a library of consultancy-grade slide layouts (executive summary, horizontal/vertical timelines, matrix, waterfall, SWOT, pyramid) plus python-pptx helpers to render them. Point Claude at your content and it picks the right layout, writes the python-pptx code, and outputs a .pptx you can open in Keynote or PowerPoint.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

mck-ppt-design-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mck-ppt-design-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "mck-ppt-design-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/likaku/Mck-ppt-design-skill",
        "~/.claude/skills/Mck-ppt-design-skill"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "mck-ppt-design-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/likaku/Mck-ppt-design-skill",
          "~/.claude/skills/Mck-ppt-design-skill"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add mck-ppt-design-skill -- git clone https://github.com/likaku/Mck-ppt-design-skill ~/.claude/skills/Mck-ppt-design-skill

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: Mck-ppt-design-skill

How to generate a McKinsey-style executive summary deck from notes

👤 Consultants, founders, and PMs who need to ship a deck fast ⏱ ~20 min intermediate

언제 쓸까: You have the content (notes, data, a memo) but not the time to hand-build a clean deck.

사전 조건
  • Python 3.10+ with python-pptx installed — pip install python-pptx
  • Skill cloned — git clone https://github.com/likaku/Mck-ppt-design-skill ~/.claude/skills/Mck-ppt-design-skill
흐름
  1. Paste your content
    Here are my notes for a 10-slide deck on our Q1 strategy. Pick the right layout for each slide from the Mck skill and generate the python-pptx code.✓ 복사됨
    → Per-slide layout choice + rationale
  2. Run the script
    Save the script, run it, and give me the .pptx path.✓ 복사됨
    → A valid .pptx on disk
  3. Iterate on layout
    Slide 5 should be a 2x2 matrix, not a bulleted list — regenerate just that slide.✓ 복사됨
    → Updated slide without touching the rest

결과: A 10-slide consultancy-style deck in ~15 minutes.

함정
  • Too many words per slide — Claude defaults to text-heavy — Constrain up-front: 'maximum 10 words per bullet, three bullets max'
  • Colors look generic — Supply a brand hex palette; the skill honors it
함께 쓰기: filesystem

Convert a written memo into a visual deck

👤 Anyone who's been told 'can you make this a deck?' ⏱ ~15 min beginner

언제 쓸까: You already have a written narrative and need slides that match.

흐름
  1. Feed the memo
    Here's the memo. Outline a 6-slide deck that preserves the argument arc, using Mck layouts.✓ 복사됨
    → Storyline with layout names
  2. Generate
    Write the python-pptx code.✓ 복사됨
    → Runnable script
  3. Export
    Render and save as Q1_memo.pptx.✓ 복사됨
    → File on disk

결과: A deck whose story matches your memo's logical flow.

함정
  • Deck loses the 'so what' of each section — Ask for action titles ('Revenue dropped because…'), not topic titles ('Revenue')

조합

다른 MCP와 조합해 10배 효율

mck-ppt-design-skill + filesystem

Save decks to disk and iterate on the generated python

Generate the deck into ./decks/Q1/, then re-open slide 3 and tighten the bullets.✓ 복사됨
mck-ppt-design-skill + github

Commit deck source under version control and diff structure changes

Commit decks/Q1.py and open a PR so the team can review the structure before render.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
layout-selection slide intent + content Before rendering any slide 0
pptx-generation content + chosen layouts After layouts are decided 0
color-and-typography-rules (optional) brand palette Automatically during rendering 0

비용 및 제한

운영 비용

API 쿼터
none
호출당 토큰
~3–10k tokens per deck depending on slide count
금액
free
Generate in batches of 5 slides — keeps each turn focused and easy to revise

보안

권한, 시크릿, 파급범위

자격 증명 저장: none
데이터 외부 송신: none — local python-pptx only

문제 해결

자주 발생하는 오류와 해결

python-pptx: ModuleNotFoundError

pip install python-pptx in the environment Claude Code runs scripts from.

확인: python -c 'import pptx; print(pptx.__version__)'
Deck opens but layouts look off

Ask Claude to regenerate using a strict layout id ('use layout #12: horizontal timeline')

Chinese fonts render as boxes

Specify a CJK font explicitly (e.g. 'Noto Sans CJK SC') and make sure it's installed on the renderer.

확인: fc-list :lang=zh

대안

Mck-ppt-design-skill 다른 것과 비교

대안언제 쓰나단점/장점
manim-skillYou need animated technical visuals rather than static decksVideo output, steeper curve
excalidraw-skillYou want whiteboard-style sketches instead of polished slidesInformal vs executive-polish

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기