mcpcn-office-powerpoint-mcp-server 2.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mcpcn_office_powerpoint_mcp_server-2.0.7/.gitignore +63 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/Dockerfile +19 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/LICENSE +21 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/PKG-INFO +1023 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/README.md +984 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/__init__.py +1 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/mcp-config.json +9 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/ppt_mcp_server.py +450 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/pyproject.toml +43 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/requirements.txt +4 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/setup_mcp.py +561 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/slide_layout_templates.json +3690 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/smithery.yaml +16 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/__init__.py +28 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/chart_tools.py +82 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/connector_tools.py +91 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/content_tools.py +593 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/hyperlink_tools.py +138 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/master_tools.py +114 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/presentation_tools.py +212 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/professional_tools.py +290 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/structural_tools.py +373 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/template_tools.py +521 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/tools/transition_tools.py +75 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/__init__.py +69 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/content_utils.py +579 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/core_utils.py +55 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/design_utils.py +689 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/presentation_utils.py +217 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/template_utils.py +1143 -0
- mcpcn_office_powerpoint_mcp_server-2.0.7/utils/validation_utils.py +323 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
tmp
|
|
2
|
+
mcprouter*
|
|
3
|
+
.env.toml
|
|
4
|
+
.env.prod.toml
|
|
5
|
+
Makefile
|
|
6
|
+
|
|
7
|
+
# Python virtual environment
|
|
8
|
+
.venv/
|
|
9
|
+
venv/
|
|
10
|
+
ENV/
|
|
11
|
+
|
|
12
|
+
# IDE - PyCharm
|
|
13
|
+
.idea/
|
|
14
|
+
*.iml
|
|
15
|
+
*.iws
|
|
16
|
+
*.ipr
|
|
17
|
+
|
|
18
|
+
# Python
|
|
19
|
+
__pycache__/
|
|
20
|
+
*.py[cod]
|
|
21
|
+
*$py.class
|
|
22
|
+
*.so
|
|
23
|
+
.Python
|
|
24
|
+
build/
|
|
25
|
+
develop-eggs/
|
|
26
|
+
dist/
|
|
27
|
+
downloads/
|
|
28
|
+
eggs/
|
|
29
|
+
.eggs/
|
|
30
|
+
lib/
|
|
31
|
+
lib64/
|
|
32
|
+
parts/
|
|
33
|
+
sdist/
|
|
34
|
+
var/
|
|
35
|
+
wheels/
|
|
36
|
+
*.egg-info/
|
|
37
|
+
.installed.cfg
|
|
38
|
+
*.egg
|
|
39
|
+
|
|
40
|
+
# Ts & Js
|
|
41
|
+
node_modules/
|
|
42
|
+
node_modules_backup/
|
|
43
|
+
dist/
|
|
44
|
+
# Package dependency locks
|
|
45
|
+
package-lock.json
|
|
46
|
+
yarn.lock
|
|
47
|
+
pnpm-lock.yaml
|
|
48
|
+
.pnpm-store/
|
|
49
|
+
|
|
50
|
+
#VSCode
|
|
51
|
+
.history/
|
|
52
|
+
|
|
53
|
+
# Logs
|
|
54
|
+
*.log
|
|
55
|
+
typescript/mcp-get-location/obfuscator.config.json
|
|
56
|
+
|
|
57
|
+
# Ignore .gitignore files in subdirectories only
|
|
58
|
+
*/.gitignore
|
|
59
|
+
**/*/.gitignore
|
|
60
|
+
.DS_Store
|
|
61
|
+
**/.DS_Store
|
|
62
|
+
**/uv.lock
|
|
63
|
+
**/.claude
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
|
|
2
|
+
FROM python:3.10-alpine
|
|
3
|
+
|
|
4
|
+
# Install system dependencies (if any required, e.g., for pillow)
|
|
5
|
+
RUN apk add --no-cache gcc musl-dev libffi-dev
|
|
6
|
+
|
|
7
|
+
# Set work directory
|
|
8
|
+
WORKDIR /app
|
|
9
|
+
|
|
10
|
+
# Copy the application code
|
|
11
|
+
COPY . .
|
|
12
|
+
|
|
13
|
+
# Install Python dependencies
|
|
14
|
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
15
|
+
|
|
16
|
+
# Expose port if needed (not needed for stdio)
|
|
17
|
+
|
|
18
|
+
# Set the entrypoint to run the MCP server
|
|
19
|
+
ENTRYPOINT ["python", "ppt_mcp_server.py"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 GongRzhe
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|