iflow-mcp-jenstangen1-pptx 0.1.0__py3-none-any.whl
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.
- .gitignore +34 -0
- PKG-INFO +359 -0
- README.md +344 -0
- iflow_mcp_jenstangen1_pptx-0.1.0.dist-info/METADATA +359 -0
- iflow_mcp_jenstangen1_pptx-0.1.0.dist-info/RECORD +18 -0
- iflow_mcp_jenstangen1_pptx-0.1.0.dist-info/WHEEL +4 -0
- iflow_mcp_jenstangen1_pptx-0.1.0.dist-info/entry_points.txt +2 -0
- language.json +1 -0
- mcp_excel_server_win32.py +554 -0
- mcp_powerpoint_server.py +1348 -0
- mcp_powerpoint_server_win32.py +766 -0
- package-lock.json +1054 -0
- package.json +5 -0
- package_name +1 -0
- push_info.json +5 -0
- pyproject.toml +26 -0
- requirements.txt +9 -0
- server_config.json +1 -0
package.json
ADDED
package_name
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
iflow-mcp-jenstangen1-pptx-xlsx-mcp
|
push_info.json
ADDED
pyproject.toml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "iflow-mcp-jenstangen1-pptx"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "MCP servers for interacting with Microsoft Office applications through AI assistance"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.7"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"python-pptx==0.6.21",
|
|
13
|
+
"fastapi==0.109.2",
|
|
14
|
+
"uvicorn==0.27.1",
|
|
15
|
+
"requests==2.31.0",
|
|
16
|
+
"opencv-python==4.9.0.80",
|
|
17
|
+
"numpy==1.26.4",
|
|
18
|
+
"mcp>=0.9.0",
|
|
19
|
+
"Pillow>=10.0.0",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.scripts]
|
|
23
|
+
pptx-mcp = "mcp_powerpoint_server:main"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
packages = ["."]
|
requirements.txt
ADDED
server_config.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"serverConfig": "{\"mcpServers\":{\"pptx-xlsx-mcp\":{\"command\":\"uvx\",\"args\":[\"--from\",\"iflow-mcp-jenstangen1-pptx-xlsx-mcp-v2\",\"pptx-mcp\",\"--transport\",\"stdio\"],\"values\":{}}}}"}
|