[project]
name = "mcp-a2a-gateway"
version = "0.1.7"
description = "A bridge server that connects Model Context Protocol (MCP) with Agent-to-Agent (A2A) protocol"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [
{name = "yw0nam", email = "spow2544@gmail.com"}
]
maintainers = [
{name = "yw0nam", email = "spow2544@gmail.com"}
]
keywords = ["MCP", "A2A", "Agent-to-Agent", "Model Context Protocol", "AI", "LLM", "uvx"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: Console",
]
dependencies = [
"a2a-sdk>=0.2.8",
"uvicorn>=0.34.0",
"fastmcp>=2.8.1",
"httpx>=0.28.1",
"ruff>=0.12.2",
"pytest-asyncio>=1.0.0",
"pytest-mock>=3.14.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"ruff",
]
test = [
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mcp_a2a_gateway"]
[project.urls]
"Homepage" = "https://github.com/yw0nam/mcp-a2a-gateway"
"Bug Tracker" = "https://github.com/yw0nam/mcp-a2a-gateway/issues"
"Repository" = "https://github.com/yw0nam/mcp-a2a-gateway"
"Documentation" = "https://github.com/yw0nam/mcp-a2a-gateway/blob/main/README.md"
[project.scripts]
"mcp-a2a-gateway" = "mcp_a2a_gateway.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-config",
"--strict-markers",
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88