[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "swipebuilder-mcp"
version = "1.0.0"
description = "MCP Server for SwipeBuilder - Access your ad swipe library programmatically"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "SwipeBuilder" }
]
keywords = ["mcp", "swipebuilder", "ads", "swipe-file"]
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 = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
]
[project.scripts]
swipebuilder-mcp = "swipebuilder_mcp.server:main"
[project.urls]
Homepage = "https://swipebuilder.io"
Documentation = "https://docs.swipebuilder.io/api"
[tool.hatch.build.targets.wheel]
packages = ["src/swipebuilder_mcp"]