[project]
name = "code-editor-mcp"
version = "0.2.4"
description = "Code editor MCP server with sandboxing, optimistic locking, and path whitelists."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "TripQi" }]
keywords = ["文件编辑", "mcp"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp>=1.22.0",
"charset-normalizer>=3.3.2",
]
[project.urls]
Homepage = "https://github.com/TripQi/code-editor"
Repository = "https://github.com/TripQi/code-editor"
Issues = "https://github.com/TripQi/code-editor/issues"
[project.scripts]
code-editor = "server:server.run"
[tool.hatch.build.targets.wheel]
packages = ["tools"]
force-include = {"server.py" = "server.py", "main.py" = "main.py"}
[tool.hatch.build.targets.sdist]
include = ["server.py", "main.py", "tools", "README.md", "LICENSE", "pyproject.toml"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"