Navigation
PowerPoint Automation MCP Server: Auto-PPT & Applause - MCP Implementation

PowerPoint Automation MCP Server: Auto-PPT & Applause

Tired of manual PPT drudgery? Our MCP Server automates your presentations, turning caffeine crashes into applause—because even slides deserve a standing ovation!" )

Developer Tools
4.7(108 reviews)
162 saves
75 comments

Users create an average of 14 projects per month with this tool

About PowerPoint Automation MCP Server

What is PowerPoint Automation MCP Server: Auto-PPT & Applause?

This tool bridges Claude Desktop with Microsoft PowerPoint through the Model Control Protocol (MCP). It enables automated tasks like creating presentations, editing slides, and managing content without manual intervention. The server acts as an intermediary, translating Claude's commands into actions within PowerPoint's interface.

How to Use PowerPoint Automation MCP Server: Auto-PPT & Applause?

Start by installing dependencies and configuring the server in Claude Desktop. Use natural language prompts to trigger actions: "Add a title slide with 'Project Overview' as the header" or "Save the deck to my desktop". The server executes these requests by interacting directly with PowerPoint's COM API.

Key steps include: cloning the repository, running uv add fastmcp pywin32, and updating your claude_desktop_config.json with server paths.

PowerPoint Automation MCP Server Features

Key Features of PowerPoint Automation MCP Server: Auto-PPT & Applause?

  • Full lifecycle management for presentations: create, open, save, and close files
  • Dynamic slide manipulation: add predefined layouts (e.g., title slides, bullet lists) and adjust positioning via coordinates
  • Text editing capabilities: update content in shapes, set titles, and inject text boxes with precise dimensions
  • Real-time presentation awareness: list open files and retrieve slide metadata on demand

Use Cases of PowerPoint Automation MCP Server: Auto-PPT & Applause?

Common applications include:

  • Automating report generation with pre-formatted templates
  • Creating training materials through structured slide insertion
  • Updating presentation content from external data sources
  • Batch processing of slide designs and branding elements

Users can even chain commands: "Insert a chart slide after slide 3 using data from the Excel sheet".

PowerPoint Automation MCP Server FAQ

FAQ from PowerPoint Automation MCP Server: Auto-PPT & Applause?

Q: Does this work on macOS?
A: No, requires Windows with PowerPoint installed due to COM API dependencies.

Q: Can I customize slide layouts?
A: Yes, specify layout types like "Title Slide" or "Two Content" when adding new slides.

Q: How are errors handled?
A: The server returns human-readable status messages for failed operations, like invalid paths or missing PowerPoint instances.

Q: What if PowerPoint crashes?
A: The API maintains a persistent connection. Re-initialize with "Restart PowerPoint" to recover.

Content

PowerPoint Automation MCP Server for Claude Desktop

This project provides a PowerPoint automation server that works with Claude Desktop via the Model Control Protocol (MCP). It allows Claude to interact with Microsoft PowerPoint, enabling tasks like creating presentations, adding slides, modifying content, and more.

Features

  • Create, open, save, and close PowerPoint presentations
  • List all open presentations
  • Get slide information and content
  • Add new slides with different layouts
  • Add text boxes to slides
  • Update text content in shapes
  • Set slide titles
  • And more!

Installation

  1. Clone this repository:

  2. Install dependencies:

    uv add fastmcp pywin32

  3. Configure Claude Desktop:

* Open Claude Desktop
* Navigate to settings
* Configure the MCP server as explained below

Configuration

To configure Claude Desktop to use this MCP server, add the following to your Claude Desktop configuration file, located at %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "ppts": {
      "command": "uv",
      "args": ["run", "path/to/main.py"]
    }
  }
}

If you're using a virtual environment or alternative Python executable (like uv):

{
  "mcpServers": {
    "ppts": {
      "command": "C:\\Path\\To\\Python\\Scripts\\uv.exe",
      "args": ["run", "C:\\Path\\To\\Project\\main.py"]
    }
  }
}

Usage

Once configured, you can use Claude Desktop to control PowerPoint. Example interactions:

  1. Initialize PowerPoint:

    Could you open PowerPoint for me?

  2. Create a new presentation:

    Please create a new PowerPoint presentation.

  3. Add a slide:

    Add a new slide to the presentation.

  4. Add content:

    Add a text box to slide 1 with the text "Hello World".

  5. Save the presentation:

    Save the presentation to C:\Users\username\Documents\presentation.pptx

Available Functions

The server provides the following PowerPoint automation functions:

  • initialize_powerpoint(): Connect to PowerPoint and make it visible
  • get_presentations(): List all open presentations
  • open_presentation(path): Open a presentation from a file
  • get_slides(presentation_id): Get all slides in a presentation
  • get_slide_text(presentation_id, slide_id): Get text content of a slide
  • update_text(presentation_id, slide_id, shape_id, text): Update text in a shape
  • save_presentation(presentation_id, path): Save a presentation
  • close_presentation(presentation_id, save): Close a presentation
  • create_presentation(): Create a new presentation
  • add_slide(presentation_id, layout_type): Add a new slide
  • add_text_box(presentation_id, slide_id, text, left, top, width, height): Add a text box
  • set_slide_title(presentation_id, slide_id, title): Set the title of a slide

Requirements

  • Windows with Microsoft PowerPoint installed
  • Python 3.7+
  • Claude Desktop client
  • pywin32 and fastmcp Python packages

Limitations

  • Works only on Windows with PowerPoint installed
  • The PowerPoint application will open and be visible during operations
  • Limited to the capabilities exposed by the PowerPoint COM API

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License

Related MCP Servers & Clients