[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "anthropic-admin-mcp" version = "0.1.1" description = "MCP server for the Anthropic Admin API — manage your Claude org from any MCP-compatible client." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "Tyler Rushton" }] keywords = ["mcp", "anthropic", "claude", "admin", "model-context-protocol"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "fastmcp>=2.0", "httpx>=0.27", "pydantic>=2.0", "python-dotenv>=1.0", ] [project.optional-dependencies] dev = ["pytest>=7.0", "pytest-asyncio>=0.21"] [project.scripts] anthropic-admin-mcp = "anthropic_admin_mcp.server:main" [project.urls] Homepage = "https://github.com/Trushtonfactory/anthropic-admin-mcp" Repository = "https://github.com/Trushtonfactory/anthropic-admin-mcp" [tool.hatch.build.targets.wheel] packages = ["src/anthropic_admin_mcp"]