- Home
- MCP servers
- Sentry
Sentry
- rust
8
GitHub Stars
rust
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"utapyngo-sentry-mcp-rs": {
"command": "mise",
"args": [
"x",
"github:utapyngo/sentry-mcp-rs",
"--",
"sentry-mcp"
],
"env": {
"SENTRY_HOST": "sentry.io",
"SENTRY_AUTH_TOKEN": "your_token_here"
}
}
}
}You run a fast, lightweight MCP server to interact with Sentry’s API, enabling you to fetch issue details, trace information, and search events directly through your MCP client. This server is designed for low memory usage, quick startup, and a single binary deployment, making it practical for integration into your tooling stack.
How to use
To leverage this MCP server with your MCP client, configure a server entry that points to a local runtime command. You will start the MCP server in your environment and then issue requests from your MCP client to retrieve issue details, trace details, or search events. The server exposes endpoints for get_issue_details, get_trace_details, and search_issue_events, which your client can invoke using the MCP protocol as defined by your client configuration. Ensure your client provides the required authentication and host details via environment variables.
How to install
Prerequisites: you need a Rust toolchain to install the binary, or you can use a development flow with an alternative runner.
Install via Cargo (the Rust package manager) to install the sentry-mcp binary on your system.
cargo install sentry-mcp
Additional setup and usage notes
Configure your environment to authenticate with Sentry and specify your Sentry host. The server requires the following environment variables:
SENTRY_AUTH_TOKEN=your_token_here
SENTRY_HOST=sentry.io
Available tools
get_issue_details
Retrieve detailed information about a specific Sentry issue, including metadata, tags, stacktraces, and optionally a specific event.
get_trace_details
Retrieve trace details including the span tree and timing information for distributed tracing analysis.
search_issue_events
Search events within an issue using Sentry's query syntax.