[project]
name = "gitlab-mr-mcp"
version = "1.4.0"
description = "Connect your AI assistant to GitLab via MCP"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Amirsina Mandegari", email = "mandegari.amirsina@gmail.com"},
]
keywords = ["gitlab", "mcp", "ai", "assistant", "merge-request", "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",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"aiohttp>=3.9.0",
"aiohttp-socks>=0.8.0",
"mcp>=1.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pre-commit>=3.6.0",
"flake8>=7.0.0",
"flake8-bugbear>=24.0.0",
"flake8-print>=5.0.0",
"black>=24.0.0",
"isort>=5.13.0",
"bandit>=1.7.7",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0",
]
[project.scripts]
gitlab-mcp = "gitlab_mr_mcp.server:main_sync"
[project.urls]
Homepage = "https://github.com/amirsina-mandegari/gitlab-mr-mcp"
Repository = "https://github.com/amirsina-mandegari/gitlab-mr-mcp"
Documentation = "https://github.com/amirsina-mandegari/gitlab-mr-mcp#readme"
Issues = "https://github.com/amirsina-mandegari/gitlab-mr-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["gitlab_mr_mcp"]
# Configuration for Python code formatting and linting tools
[tool.black]
line-length = 120
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true