PowerPoint MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PowerPoint MCP ServerCreate a 5-slide pitch deck about our Q3 results and save it as q3.pptx"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PowerPoint MCP Server
Based on Office-PowerPoint-MCP-Server by GongRzhe – all credit for the core implementation goes to the original author.
Setup
./start_server.shCreates a .venv, installs dependencies from requirements.txt, and starts the server on port 8001 via streamable HTTP.
Related MCP server: mcp-powerpoint
Deployment to Docker host
./deploy_to_remote.sh userSyncs the server via rsync to the Docker host and builds/starts the container via docker compose.
MCP Registration
# Docker / remote
claude mcp add --scope user --transport http ppt http://<docker-host>:8001/mcp
# Local
claude mcp add --scope user --transport http ppt http://127.0.0.1:8001/mcpFile Transfer
The server runs in Docker and cannot access local file paths (e.g. /Users/…). Files must be uploaded via HTTP before they can be used with MCP tools.
Files are stored in /app/pptx_files inside the container (mapped to /mnt/dockershare/powerpoint).
# Upload (required before open_presentation)
curl -s -H "X-API-Key: $MCP_API_KEY" -F "file=@deck.pptx" http://<docker-host>:8001/upload
# → returns JSON with "file_path": "/app/pptx_files/deck.pptx"
# Download
curl -H "X-API-Key: $MCP_API_KEY" http://<docker-host>:8001/download/deck.pptx -o deck.pptx
# List files
curl -H "X-API-Key: $MCP_API_KEY" http://<docker-host>:8001/files
# Delete single file
curl -X DELETE -H "X-API-Key: $MCP_API_KEY" http://<docker-host>:8001/files/deck.pptx
# Delete all files
curl -X DELETE -H "X-API-Key: $MCP_API_KEY" http://<docker-host>:8001/filesWorkflow for agents
Upload the local file via
curl -s -H "X-API-Key: $MCP_API_KEY" -F "file=@/path/to/file.pptx" http://<docker-host>:8001/uploadUse the returned
file_pathwithopen_presentation(file_path="/app/pptx_files/file.pptx")Do NOT try to read or unzip PPTX files locally — always upload via curl first
API Key
Set MCP_API_KEY in the container environment to require X-API-Key on all /upload, /download, and /files requests. If unset, endpoints are unprotected.
See docker-compose.yml for the placeholder.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Generate, edit, merge, translate and PDF-convert PowerPoint (.pptx) over MCP. 8 tools.
Presentations.AI MCP server — create designed slide decks from a topic, text, or document.
AI presentation and report generation: slides, diagrams, PPTX export, live preview MCP App.
- StorydocOAuthcom.storydoc
Generate and manage Storydoc presentations from any MCP-compatible client.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables AI assistants to create, edit, and manipulate PowerPoint presentations programmatically with support for text styling, shapes, slide rearrangement, and direct Office XML access.81-
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to create and manipulate PowerPoint presentations programmatically, including adding slides, exporting to PDF, and reading metadata.10 npm5MIT
- AlicenseNot gradedqualityCmaintenanceEnables creation of professional PowerPoint presentations with AI-generated content and images, supporting multiple LLMs and image services via MCP protocol.MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to create, edit, and manage Word documents through MCP tools, with HTTP-based file upload and download for use in Dockerized environments.MIT