power-point-mcp
Click on "Install 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., "@power-point-mcpadd a slide with title 'Key Findings' and three bullets"
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.
power-point-mcp
An MCP (Model Context Protocol) server that lets Claude read, create, and
edit a single, pre-bound PowerPoint file. Bind the server to one
.pptx and one optional template via environment variables; the server
refuses to touch anything else on disk. Claude can then ask for slide
metadata, list slides, read a slide's shapes, create the file from your
template, and add new slides whose text comes only from the user.
Prerequisites
Python 3.14 (matches
.python-version).uvfor environment and dependency management.
That is the entire toolchain. Nothing is installed globally.
Related MCP server: PPTX MCP Server
Setup
git clone <this-repo-url> power-point-mcp
cd power-point-mcp
uv sync # runtime deps into a local .venv
uv sync --group dev # add pytest for running the test suiteFor a step-by-step walkthrough including Claude Desktop wiring and
troubleshooting, see SETUP.md.
Configuration
The server is bound to a single PPTX file via environment variables:
Variable | Required | Purpose |
| yes | Absolute path to the one |
| no | Absolute path to a |
If PPTX_TARGET is unset, the server refuses to start.
Running locally
PPTX_TARGET=/abs/path/to/deck.pptx \
PPTX_TEMPLATE=/abs/path/to/template.pptx \
uv run power-point-mcpThe server speaks MCP over stdio (FastMCP's default transport).
Claude Desktop configuration
Add an entry like this to your Claude Desktop MCP config:
{
"mcpServers": {
"power-point-mcp": {
"command": "uv",
"args": ["run", "power-point-mcp"],
"env": {
"PPTX_TARGET": "/abs/path/to/deck.pptx",
"PPTX_TEMPLATE": "/abs/path/to/template.pptx"
}
}
}
}Tools exposed
presentation_info()— slide count, dimensions, layouts, master.list_slides()— index, layout, title, text snippet for every slide.read_slide(slide_index)— every shape on one slide, with its text.create_presentation_from_template(overwrite=False)— initialise the bound target fromPPTX_TEMPLATE.add_slide(layout_name, placeholders)— append a slide using a named layout; only fills placeholders you supply.set_slide_placeholder(slide_index, placeholder_name, text)— set a placeholder on an existing slide by name.set_slide_placeholder_by_idx(slide_index, placeholder_idx, text)— set a placeholder by its layout idx.set_slide_title(slide_index, text)— set the title placeholder of a slide.delete_slide(slide_index)— remove a slide.reorder_slide(slide_index, new_index)— move a slide to a new position.
Recommended companion skill
Pair this server with the academic-pptx-skill. It provides the slide-design conventions and prompts; this MCP gives Claude the file-system hands to actually write the deck.
Security note
The server only ever reads or writes PPTX_TARGET. Every path the tools
receive is routed through a single security check that compares it
against the bound target and rejects anything else. There is no
network code in the package.
Development
uv sync --group dev
uv run pytestSee docs/architecture.md for the layering and where to add new tools.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/timon-strauss/power-point-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server