[project]
name = "honeybadger-mcp-server"
version = "0.2.1"
description = "A Model Context Protocol server providing tools to interact with the Honeybadger API via LLMs"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Bobby Battista" }]
keywords = ["honeybadger", "errors", "mcp", "llm", "automation"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"aiohttp==3.11.0",
"click>=8.1.7",
"mcp>=1.6.0",
"pydantic>=2.11.3",
"fastmcp>=2.2.1",
]
[project.optional-dependencies]
dev = [
"pyright>=1.1.389",
"ruff>=0.7.3",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0"
]
[project.scripts]
honeybadger-mcp-server = "honeybadger_mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.389",
"ruff>=0.7.3",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"