/ Directory / Playground / Office PowerPoint MCP
● Community GongRzhe ⚡ Instant

Office PowerPoint MCP

by GongRzhe · GongRzhe/Office-PowerPoint-MCP-Server

Build .pptx decks from Claude — slides, layouts, charts, images, speaker notes, and template-aware insertions.

Office PowerPoint MCP wraps python-pptx to give Claude full control of PowerPoint files. Generate decks from outlines, populate template slides with data, add charts and images, and write speaker notes — without ever opening PowerPoint manually. Pairs cleanly with the matching Word MCP for document/deck workflows.

Why use it

Key features

Live Demo

What it looks like in practice

office-powerpoint-mcp.replay ▶ ready
0/0

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "office-powerpoint-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "office-powerpoint-mcp-server",
        "ppt_mcp_server"
      ]
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "office-powerpoint-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "office-powerpoint-mcp-server",
        "ppt_mcp_server"
      ]
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "office-powerpoint-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "office-powerpoint-mcp-server",
        "ppt_mcp_server"
      ]
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "office-powerpoint-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "office-powerpoint-mcp-server",
        "ppt_mcp_server"
      ]
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "office-powerpoint-mcp",
      "command": "uvx",
      "args": [
        "--from",
        "office-powerpoint-mcp-server",
        "ppt_mcp_server"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "office-powerpoint-mcp": {
      "command": {
        "path": "uvx",
        "args": [
          "--from",
          "office-powerpoint-mcp-server",
          "ppt_mcp_server"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add office-powerpoint-mcp -- uvx --from office-powerpoint-mcp-server ppt_mcp_server

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use Office PowerPoint MCP

Turn a markdown outline into a polished slide deck

👤 Anyone presenting research, status, or pitches ⏱ ~30 min beginner

When to use: You have notes or a doc and need slides by tomorrow morning.

Prerequisites
  • Source outline — Markdown file with H1/H2 hierarchy
Flow
  1. Choose a base template
    Use ppt-mcp. Open ~/templates/corporate.pptx and list the available layouts.✓ Copied
    → Layout list (Title Slide, Section Header, Content, Two Content)
  2. Map outline to slides
    Read outline.md. Each H1 is a section header slide; each H2 is a content slide. Bullet content under each H2.✓ Copied
    → Plan summary: N section headers, M content slides
  3. Render and review
    Build the deck and save as deck-2026-04-27.pptx. Then read back the slide count and titles for sanity check.✓ Copied
    → Deck saved; titles match outline

Outcome: Deck ready to refine in PowerPoint instead of building from blank.

Pitfalls
  • Custom template uses non-standard layout names — List layouts first; map by index if names are obscure
Combine with: office-word-mcp

Generate charts from data and embed in a deck

👤 Analysts who refresh quarterly reports ⏱ ~25 min intermediate

When to use: Numbers change every quarter; the format is stable.

Prerequisites
  • Source data as CSV or inline — Any tabular format Claude can read
Flow
  1. Pick chart types per metric
    From q1-data.csv, decide chart type per metric (revenue → bar, growth-rate → line, segment-mix → pie).✓ Copied
    → Per-metric mapping
  2. Insert charts as native objects
    Add each chart on its own slide with the metric name as title. Use the Two Content layout.✓ Copied
    → Native chart objects (editable in PowerPoint), not bitmaps

Outcome: Editable charts in deck; recipient can drill in.

Pitfalls
  • Chart data doesn't update when source changes — Re-run the generator each quarter; charts are baked into the .pptx

Add speaker notes for every slide based on the content

👤 Presenters who want a teleprompter-grade prep ⏱ ~20 min beginner

When to use: You're presenting cold and need a script per slide.

Flow
  1. Read slide content
    Open the deck. For each slide, extract the visible bullets.✓ Copied
    → Per-slide content listed
  2. Generate notes
    Write 60-second speaker notes per slide. Conversational, no jargon. Save into the speaker-notes pane.✓ Copied
    → Notes pane populated for every slide

Outcome: Deck doubles as a delivery script.

Combinations

Pair with other MCPs for X10 leverage

office-powerpoint-mcp + office-word-mcp

Generate matching report and deck from one source

Build the long-form .docx via word-mcp, then generate the executive readout .pptx via ppt-mcp from the same outline.✓ Copied
office-powerpoint-mcp + filesystem

Read source data from disk before deck render

Read q1-data.csv via filesystem, then build the deck with charts.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
create_presentation filename, template_path? Start a new deck 0
add_slide filename, layout_name Each new slide 0
set_slide_title filename, slide_index, title Title placeholder fill 0
add_text_box filename, slide_index, text, x, y, w, h Custom text overlay 0
add_chart filename, slide_index, type, data, position Data viz 0
add_image filename, slide_index, image_path, x, y Image placement 0
set_speaker_notes filename, slide_index, text Per-slide speaker prep 0

Cost & Limits

What this costs to run

API quota
N/A — local
Tokens per call
100–600 per call
Monetary
Free (MIT)
Tip
Build slide-by-slide rather than dumping the whole deck plan in one prompt

Security

Permissions, secrets, blast radius

Minimum scopes: filesystem-read filesystem-write
Credential storage: None
Data egress: None

Troubleshooting

Common errors and fixes

Layout not found

Layout names vary per template; list_layouts first to enumerate exact names

Chart looks blank

python-pptx uses XML chart references; ensure the underlying spreadsheet data is non-empty

Image too large for slide

Pass explicit width/height in EMUs; use pptx.util.Inches() helpers

Alternatives

Office PowerPoint MCP vs others

AlternativeWhen to use it insteadTradeoff
Office Word MCPYou need a doc, not a deckDifferent surface; same author
Excel MCP ServerPure tabular dataExcel for analysis, PPT for narrative

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills