[project]
name = "mcp-presidio"
version = "0.1.0"
description = "MCP server providing PII detection and anonymization using Microsoft Presidio"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "MCP Presidio Contributors"}
]
dependencies = [
"mcp>=1.0.0",
"presidio-analyzer>=2.2.0",
"presidio-anonymizer>=2.2.0",
"spacy>=3.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
mcp-presidio = "mcp_presidio.server:main"