drio
Open app

MCP PPTX Server

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP PPTX Server is a FastMCP server designed for creating and manipulating PowerPoint presentations programmatically.

To use MCP PPTX Server, install it on your system using the command: fastmcp install .\server.py.

  • Create PowerPoint presentations from scratch. - Manipulate existing PowerPoint files. - Fast and efficient processing using FastMCP framework.
  1. Automating the generation of presentation slides for reports.
  2. Modifying existing presentations for updates or branding.
  3. Integrating with other applications to create dynamic presentations.

Add to your AI client

Use these steps to connect MCP PPTX Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-pptx-server-h4ck4life": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-pptx-server-h4ck4life": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-pptx-server-h4ck4life": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-pptx-server-h4ck4life": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-pptx-server-h4ck4life": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-pptx-server-h4ck4life": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-pptx-server-h4ck4life"
      ]
    }
  }
}

FAQ

Can MCP PPTX Server create presentations in different formats?

Currently, it focuses on PowerPoint (.pptx) format only.

Is MCP PPTX Server free to use?

Yes! It is open-source and available for anyone to use.

What programming language is MCP PPTX Server written in?

MCP PPTX Server is written in Python.