Ayushmaniar/powerpoint-mcp
3.4
If you are the rightful owner of powerpoint-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
PowerPoint MCP Server is a Model Context Protocol server designed for automating Microsoft PowerPoint on Windows using COM automation.
PowerPoint MCP Server
Model Context Protocol server for PowerPoint automation on Windows.
Launch Video
Windows Only
This MCP server works exclusively on Windows because it uses pywin32 to automate Microsoft PowerPoint through COM automation.
Installation
Prerequisites
- Windows 10/11
- Microsoft PowerPoint installed
- Python 3.10+
Install with uvx (One step/One line installation across most MCP Clients)
Claude Code
claude mcp add powerpoint -- uvx powerpoint-mcp
## Making it avaiable for across all project (Install once, use everywhere)
claude mcp add powerpoint --scope user -- uvx powerpoint-mcp
Cursor
- Click on Settings -> Tools & MCP -> New MCP Server
~/.cursor/mcp.jsonwould open up- Copy-paste this json
{
"mcpServers": {
"powerpoint": {
"command": "uvx",
"args": ["powerpoint-mcp"]
}
}
}
- Restart your IDE after configuration.
VS Code (GitHub Copilot)
- Open
C:\Users\Your_User_Name\AppData\Roaming\Code\User\mcp.json - Copy-paste this json
{
"mcpServers": {
"powerpoint": {
"command": "uvx",
"args": ["powerpoint-mcp"]
}
}
}
- Restart your IDE after configuration.