MCP Server
Active
MIT
MCP Office PowerPoint MCP Server
io.github.dosev-ai/mcp-office-powerpoint
What is the MCP Office PowerPoint MCP server?
46-tool PowerPoint MCP server. Build, edit, and export .pptx files. Windows-first.
How to install MCP Office PowerPoint
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
PPT_ALLOWLIST_ROOTSrequiredComma-separated directory roots allowed for file access. Required — no files are accessible without this.
PPT_ENABLE_WRITESet to 'true' to enable write operations (slide editing and shape creation).
PPT_ENABLE_COMSet to 'true' to activate COM-backed tools: export_slide, export_deck, run_slide_show, recalculate_charts, export_changed_slides_only. Windows-only — requires pywin32 and Microsoft PowerPoint.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-office-powerpoint": {
"command": "uvx",
"args": [
"mcp-office",
"--from",
"mcp-office",
"pptmcp"
],
"env": {
"PPT_ALLOWLIST_ROOTS": "<YOUR_PPT_ALLOWLIST_ROOTS>",
"PPT_ENABLE_WRITE": "<YOUR_PPT_ENABLE_WRITE>",
"PPT_ENABLE_COM": "<YOUR_PPT_ENABLE_COM>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-office-powerpoint": {
"command": "uvx",
"args": [
"mcp-office",
"--from",
"mcp-office",
"pptmcp"
],
"env": {
"PPT_ALLOWLIST_ROOTS": "<YOUR_PPT_ALLOWLIST_ROOTS>",
"PPT_ENABLE_WRITE": "<YOUR_PPT_ENABLE_WRITE>",
"PPT_ENABLE_COM": "<YOUR_PPT_ENABLE_COM>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-office-powerpoint": {
"command": "uvx",
"args": [
"mcp-office",
"--from",
"mcp-office",
"pptmcp"
],
"env": {
"PPT_ALLOWLIST_ROOTS": "<YOUR_PPT_ALLOWLIST_ROOTS>",
"PPT_ENABLE_WRITE": "<YOUR_PPT_ENABLE_WRITE>",
"PPT_ENABLE_COM": "<YOUR_PPT_ENABLE_COM>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-office-powerpoint": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-office",
"--from",
"mcp-office",
"pptmcp"
],
"env": {
"PPT_ALLOWLIST_ROOTS": "<YOUR_PPT_ALLOWLIST_ROOTS>",
"PPT_ENABLE_WRITE": "<YOUR_PPT_ENABLE_WRITE>",
"PPT_ENABLE_COM": "<YOUR_PPT_ENABLE_COM>"
}
}
}
}Claude Code
claude mcp add mcp-office-powerpoint --env PPT_ALLOWLIST_ROOTS=<YOUR_PPT_ALLOWLIST_ROOTS> --env PPT_ENABLE_WRITE=<YOUR_PPT_ENABLE_WRITE> --env PPT_ENABLE_COM=<YOUR_PPT_ENABLE_COM> -- uvx mcp-office --from mcp-office pptmcpRelated MCP servers
MCP Office Excel
Active
65-tool Excel MCP server. Read, write, format, and export .xlsx files. Windows-first.
3
View repository →Python
MIT
MCP Office Word
Active
50-tool Word MCP server. Document assembly, tracked changes, and export. Windows-first.
3
View repository →Python
MIT