Stay Updated
Subscribe to our newsletter for the latest news and updates about MCP servers
Subscribe to our newsletter for the latest news and updates about MCP servers
MCP Server for retrieving and analyzing error reports and debugging information from Sentry.io.
Sentry MCP Server provides a structured interface for retrieving and analyzing issue data from Sentry.io through the Model Context Protocol. This implementation enables AI assistants to access error reports, stacktraces, and debugging information directly from Sentry accounts. The server simplifies the process of examining software issues by providing tools that extract and format relevant error data, making it easier to diagnose and resolve application problems.
3/5 - Moderate complexity requiring Sentry authentication token and basic configuration choices.
Add to your claude_desktop_config.json
:
"mcpServers": {
"sentry": {
"command": "uvx",
"args": ["mcp-server-sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
}
}
Add to your claude_desktop_config.json
:
"mcpServers": {
"sentry": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/sentry",
"--auth-token",
"YOUR_SENTRY_TOKEN"
]
}
}
pip install mcp-server-sentry
claude_desktop_config.json
:"mcpServers": {
"sentry": {
"command": "python",
"args": ["-m", "mcp_server_sentry", "--auth-token", "YOUR_SENTRY_TOKEN"]
}
}
MIT License