一个用于创建 PowerPoint 演示文稿的 MCP 服务器项目
<a href="https://glama.ai/mcp/servers/h1wl85c8gs"> <img width="380" height="200" src="https://gips3.baidu.com/it/u=3762011225,376777946&fm=3081&app=3081&f=PNG?w=760&h=400" alt="Powerpoint Server MCP 服务器" /> </a>该服务器实现了多个工具:
create-presentation:启动演示文稿
add-slide-title-only:向演示文稿添加标题幻灯片
add-slide-section-header:向演示文稿添加章节标题幻灯片
add-slide-title-content:向演示文稿添加带有内容的标题幻灯片
add-slide-title-with-table:向演示文稿添加带有表格的标题幻灯片
add-slide-title-with-chart:向演示文稿添加带有图表的标题幻灯片
add-slide-picture-with-caption:向演示文稿添加带有标题和说明的图片幻灯片
open-presentation:打开演示文稿进行编辑
save-presentation:将演示文稿保存到文件
generate-and-save-image:使用 FLUX 模型为演示文稿生成图像
需要环境变量来通过 TogetherAI 生成图像 注册账户:https://api.together.xyz/settings/api-keys
"env": {
"TOGETHER_API_KEY": "api_key"
}
需要一个文件夹路径。所有演示文稿和图像都将保存到这个文件夹。
"--folder-path",
"/path/to/decks_folder"
MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
git clone https://github.com/supercurses/powerpoint.git
在 MacOS 中:~/Library/Application\ Support/Claude/claude_desktop_config.json
在 Windows 中:%APPDATA%/Claude/claude_desktop_config.json
--directory:克隆上述仓库的路径--folder-path:PowerPoint 演示文稿和图像将被保存到的路径。也是您应放置任何希望 MCP 服务器使用的图像的路径。 # 将服务器添加到您的 claude_desktop_config.json
"mcpServers": {
"powerpoint": {
"command": "uv",
"env": {
"TOGETHER_API_KEY": "api_key"
},
"args": [
"--directory",
"/path/to/powerpoint",
"run",
"powerpoint",
"--folder-path",
"/path/to/decks_folder"
]
}
创建关于鱼类的演示文稿,生成一些图像,并包括表格和图表
创建关于所附论文的演示文稿。请在演示文稿中使用以下图像:
author.jpeg
假设您已经安装了 SQLite MCP 服务器。
审查 2024 销售数据表。创建展示当前趋势的演示文稿,适当地使用表格和图表
本 MCP 服务器采用 MIT 许可证。这意味着您可以自由地使用、修改和分发该软件,但需遵守 MIT 许可证中的条款和条件。如需更多详情,请参阅项目存储库中的 LICENSE 文件。