Community MCP server for Sentry error monitoring.
npx -y @sentry/mcp-server
{
"mcpServers": {
"sentry": {
"env": {
"SENTRY_AUTH_TOKEN": "xxx"
},
"args": [
"-y",
"@sentry/mcp-server"
],
"command": "npx"
}
}
}Get error events for a Sentry issue
{
"type": "object",
"required": [
"issue_id"
],
"properties": {
"issue_id": {
"type": "string"
}
}
}// Input
{
"issue_id": "123"
}// Output
{
"events": [
{
"id": "ev1",
"timestamp": "2026-03-10",
"stacktrace": "TypeError at line 42"
}
]
}List Sentry issues for a project
{
"type": "object",
"required": [
"project"
],
"properties": {
"query": {
"type": "string"
},
"project": {
"type": "string"
}
}
}// Input
{
"query": "is:unresolved",
"project": "web-app"
}// Output
{
"issues": [
{
"id": "123",
"count": 42,
"title": "TypeError: null"
}
]
}Resolve a Sentry issue
Community MCP server for Sentry error monitoring.
Sentry provides 3 tools including get_issue_events, list_issues, resolve_issue.
Sentry offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install Sentry using the following command: npx -y @sentry/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
{
"type": "object",
"required": [
"issue_id",
"status"
],
"properties": {
"status": {
"type": "string"
},
"issue_id": {
"type": "string"
}
}
}// Input
{
"status": "resolved",
"issue_id": "123"
}// Output
{
"id": "123",
"status": "resolved"
}Sentry is listed under the Development Tools category in the AgentForge MCP registry.
Sentry has a current uptime of 99.8% with an average response time of 250ms.
To connect Sentry, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Sentry's tools via the Model Context Protocol.