Installation and Configuration Steps
Office-PowerPoint-MCP-Server provides multiple installation methods, supporting both local and cloud deployment environments.
Basic installation process
- Getting the source code: Cloning repositories via git
git clone https://github.com/GongRzhe/Office-PowerPoint-MCP-Server.git
cd Office-PowerPoint-MCP-Server - Installation of dependencies: Install dependencies using pip
pip install -r requirements.txt
or run the installation scriptpython setup_mcp.py
MCP server configuration
You need to edit the configuration file of the AI Assistant client (e.g. ~/.cursor/mcp.json) to add the server information:
{
"mcpServers": {
"ppt": {
"command": "python",
"args": ["/path/to/ppt_mcp_server.py"],
"env": {}
}
}
}
Start the server
Run the command to start the service:python ppt_mcp_server.py
After successful startup, the AI assistant can interact with the server via the MCP protocol.
This answer comes from the articleOffice-PowerPoint-MCP-Server: Tools for creating and editing PowerPoint presentations through AI assistantsThe































