[package]
edition = "2024"
name = "sentry-mcp"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal MCP server for Sentry"
readme = "README.md"
keywords = [
"sentry",
"mcp",
"llm",
"ai",
]
categories = [
"development-tools",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/utapyngo/sentry-mcp-rs"
[lib]
name = "sentry_mcp"
path = "src/lib.rs"
[[bin]]
name = "sentry-mcp"
path = "src/main.rs"
[[test]]
name = "api_client_tests"
path = "tests/api_client_tests.rs"
[[test]]
name = "execute_tests"
path = "tests/execute_tests.rs"
[[test]]
name = "get_issue_details_tests"
path = "tests/get_issue_details_tests.rs"
[[test]]
name = "get_trace_details_tests"
path = "tests/get_trace_details_tests.rs"
[[test]]
name = "search_issue_events_tests"
path = "tests/search_issue_events_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"socks",
]
default-features = false
[dependencies.rmcp]
version = "0.12"
features = [
"server",
"macros",
"transport-io",
]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_qs]
version = "0.13"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
cognitive_complexity = "warn"