[project]
name = "sealmetrics-mcp"
version = "0.2.0"
description = "Model Context Protocol server for Sealmetrics analytics - query traffic, conversions, and marketing data with AI assistants"
authors = [
{name = "Sealmetrics Team", email = "support@sealmetrics.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["mcp", "sealmetrics", "analytics", "claude", "ai", "marketing"]
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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=0.9.0",
"httpx>=0.27.0",
]
[project.urls]
Homepage = "https://sealmetrics.com"
Documentation = "https://github.com/sealmetrics/mcp-server#readme"
Repository = "https://github.com/sealmetrics/mcp-server"
Issues = "https://github.com/sealmetrics/mcp-server/issues"
[project.scripts]
sealmetrics-mcp = "server:run"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/.gitignore",
"/test_server.py",
"/.env*",
"/__pycache__",
"/.pytest_cache",
]
[tool.hatch.build.targets.wheel]
packages = ["."]
exclude = [
"test_server.py",
".env*",
]