Sentry server

This commit is contained in:
David Soria Parra
2024-11-24 20:49:55 +00:00
parent a1120c307b
commit da12f5fc42
6 changed files with 707 additions and 0 deletions

19
src/sentry/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "mcp-server-sentry"
version = "0.4.1"
description = "MCP server for retrieving issues from sentry.io"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["mcp>=0.9.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ruff>=0.8.0",
]
[project.scripts]
mcp-server-sentry = "mcp_server_sentry:main"