MCP Office PowerPoint MCP Server

46-tool PowerPoint MCP server. Build, edit, and export .pptx files. Windows-first.

Local serverstdioPython

What is the MCP Office PowerPoint MCP server?

46-tool PowerPoint MCP server. Build, edit, and export .pptx files. Windows-first. That is what the mcp office powerpoint mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP Office is a suite of Model Context Protocol servers that expose Microsoft Office capabilities as governed, deterministic tool calls. Each server runs locally on Windows, connects to your MCP client (Claude Desktop, VS Code Copilot, or any MCP-compatible client), and gives you structured control over Office files — without an in-app AI assistant.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • Package — What it does
  • mailmcp — In development — Outlook email, calendar, contacts, and MailRepo search
  • Requirement — Notes
  • Prerequisites — The Prerequisites tool exposed by this server
  • Verify — Each should return a tool list (65 for Excel, 46 for PowerPoint, 50 for Word). If a server is missing, check that python resolves to the venv where

Getting it running

The server ships on PyPI as mcp-office, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: EXCEL_ALLOWLIST_ROOTS, EXCEL_ENABLE_WRITE, PPT_ALLOWLIST_ROOTS, PPT_ENABLE_WRITE, WORD_ALLOWLIST_ROOTS, WORD_ENABLE_WRITE. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Windows 10 or 11 - Python 3.11 or later (python --version) - Claude Desktop or VS Code with GitHub Copilot - Microsoft Office (Excel / PowerPoint / Word) — required for COM-backed tools (styling, PDF export, tracked-changes)

How it compares

Among the team communication options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Office PowerPoint's toolset — Package, mailmcp, Requirement and 2 more — is a fair guide to whether it matches your workflow. It is maintained by dosev-ai; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP Office PowerPoint's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
PackageWhat it does
mailmcpIn development — Outlook email, calendar, contacts, and MailRepo search
RequirementNotes
PrerequisitesThe Prerequisites tool exposed by this server.
VerifyEach should return a tool list (65 for Excel, 46 for PowerPoint, 50 for Word). If a server is missing, check that python resolves to the venv where you installed mcp-office.

How to install the MCP Office PowerPoint MCP server

{
  "mcpServers": {
    "office-powerpoint": {
      "command": "uvx",
      "args": ["mcp-office"],
      "env": {
        "EXCEL_ALLOWLIST_ROOTS": "your-value",
        "EXCEL_ENABLE_WRITE": "your-value",
        "PPT_ALLOWLIST_ROOTS": "your-value",
        "PPT_ENABLE_WRITE": "your-value",
        "WORD_ALLOWLIST_ROOTS": "your-value",
        "WORD_ENABLE_WRITE": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Windows 10 or 11 - Python 3.11 or later (python --version) - Claude Desktop or VS Code with GitHub Copilot - Microsoft Office (Excel / PowerPoint / Word) — required for COM-backed tools (styling, PDF export, tracked-changes)
VariableDescriptionRequired
EXCEL_ALLOWLIST_ROOTSConfiguration value read at startup.Optional
EXCEL_ENABLE_WRITEConfiguration value read at startup.Optional
PPT_ALLOWLIST_ROOTSConfiguration value read at startup.Optional
PPT_ENABLE_WRITEConfiguration value read at startup.Optional
WORD_ALLOWLIST_ROOTSConfiguration value read at startup.Optional
WORD_ENABLE_WRITEConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Office PowerPoint to Package.
  • Use MCP Office PowerPoint to mailmcp.
  • Use MCP Office PowerPoint to Requirement.

Frequently asked questions

It connects MCP Office PowerPoint to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Package, mailmcp, Requirement, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Office PowerPoint directly.