[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bitbucket-mcp"
version = "0.5.0"
description = "MCP server for comprehensive Bitbucket Cloud API integration"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Acendas" }
]
keywords = [
"mcp",
"bitbucket",
"pull-request",
"pipelines",
"code-review",
"claude",
"anthropic",
"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",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"fastmcp>=0.1.0",
"httpx>=0.25.0",
]
[project.scripts]
bitbucket-mcp = "bitbucket_mcp:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[tool.hatch.build.targets.wheel]
packages = ["bitbucket_mcp"]
[tool.pytest.ini_options]
testpaths = ["tests"]