Initial commit: Python MCP server (Streamable HTTP, API key, return documents)

This commit is contained in:
2026-06-13 06:02:13 +00:00
commit 269f3b9757
7 changed files with 1855 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "py-docx-mcp"
version = "0.1.0"
description = "Python MCP server for DOCX document manipulation"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"python-docx>=1.1.0",
"Pillow>=10.0.0",
"markdown>=3.5",
"html5lib>=1.1",
"regex>=2024.0.0",
"aiofiles>=24.0.0",
]
[project.scripts]
py-docx-mcp = "py_docx.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/py_docx"]