A Model Context Protocol server for retrieving and analyzing issues from Sentry.io. This server provides tools to inspect error reports, stacktraces, and other debugging information from your Sentry account.
50K+
1 Tool
Version 4.43 or later needs to be installed to add the server automatically
About
A Model Context Protocol server for retrieving and analyzing issues from Sentry.io. This server provides tools to inspect error reports, stacktraces, and other debugging information from your Sentry account.
| Attribute | Details |
|---|---|
| Docker Image | mcp/sentry |
| Author | modelcontextprotocol |
| Repository | https://github.com/modelcontextprotocol/servers |
| Attribute | Details |
|---|---|
| Dockerfile | https://github.com/modelcontextprotocol/servers/blob/b4ee623039a6c60053ce67269701ad9e95073306/src/sentry/Dockerfile |
| Commit | b4ee623039a6c60053ce67269701ad9e95073306 |
| Docker Image built by | Docker Inc. |
| Docker Scout Health Score | |
| Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/sentry --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
| Licence | MIT License |
| Tools provided by this Server | Short Description |
|---|---|
get_sentry_issue | Retrieve and analyze a Sentry issue by ID or URL. |
get_sentry_issueRetrieve and analyze a Sentry issue by ID or URL. Use this tool when you need to: - Investigate production errors and crashes - Access detailed stacktraces from Sentry - Analyze error patterns and frequencies - Get information about when issues first/last occurred - Review error counts and status
| Parameters | Type | Description |
|---|---|---|
issue_id_or_url | string | Sentry issue ID or URL to analyze |
{
"mcpServers": {
"sentry": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SENTRY_AUTH_TOKEN",
"mcp/sentry",
"--auth-token",
"$SENTRY_AUTH_TOKEN"
],
"env": {
"SENTRY_AUTH_TOKEN": "YOUR_SENTRY_TOKEN"
}
}
}
}