[build-system] requires = ["hatchling>=1.24"] build-backend = "hatchling.build" [project] name = "certindex-mcp" version = "0.2.0" description = "MCP server exposing CertIndex's Certificate Transparency search tools to any MCP-compatible client." readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.11" authors = [ { name = "CertIndex contributors", email = "support@ctindex.io" }, ] keywords = [ "mcp", "model-context-protocol", "certificate-transparency", "ct-logs", "tls", "certificates", "security", "llm", "claude", "agent", ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Security", "Topic :: Internet :: WWW/HTTP", ] dependencies = [ "mcp>=1.2.0", "httpx>=0.27", "pydantic>=2.6", ] [project.optional-dependencies] dev = [ "pytest>=8", "pytest-asyncio>=0.23", "respx>=0.21", "ruff>=0.6", "pip-audit>=2.7", ] [project.urls] Homepage = "https://ctindex.io" Documentation = "https://github.com/certindex/certindex-mcp#readme" Source = "https://github.com/certindex/certindex-mcp" Issues = "https://github.com/certindex/certindex-mcp/issues" Changelog = "https://github.com/certindex/certindex-mcp/releases" [project.scripts] certindex-mcp = "certindex_mcp.server:main" [tool.hatch.build.targets.wheel] packages = ["src/certindex_mcp"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP", "SIM"]