/ 目录 / 演练场 / 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 搭配,撬动十倍杠杆

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
每次调用 Token 数
~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

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills