MCP Catalogs
Home

sentry-mcp

by getsentry·691·Score 53

MCP server for Sentry integration with LLMs, providing error tracking and debugging capabilities.

developer-toolsmonitoringai-llm
106
Forks
82
Open issues
this month
Last commit
2d ago
Indexed

Overview

Sentry's MCP server is designed for human-in-the-loop coding agents, focusing on developer workflows and debugging use cases. It acts as middleware to the upstream Sentry API, optimized for coding assistants like Cursor and Claude Code. The server supports both remote and stdio transport modes, with AI-powered search tools requiring an LLM provider (OpenAI or Anthropic).

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Debugging application errors with natural language queries
you:Tracking and analyzing application performance issues
you:Integrating Sentry error reporting into AI coding assistants
you:What LLM providers are supported?
you:Can I use this with self-hosted Sentry?

When to choose this

Choose this server when you're already using Sentry for error tracking and want to integrate it directly with AI coding assistants for debugging and issue resolution.

When NOT to choose this

Don't choose this if you're not using Sentry or need read/write access to your error tracking system beyond what Sentry provides.

Tools this server exposes

12 tools extracted from the README
  • search_events

    Search Sentry events using natural language

  • search_issues

    Search Sentry issues using natural language

  • create_issue

    Create a new Sentry issue

  • get_issue

    Retrieve details of a specific Sentry issue

  • update_issue

    Update an existing Sentry issue

  • list_projects

    List available Sentry projects

  • create_github_issue

    Create a GitHub issue from a Sentry issue

  • query_postgres

    Query PostgreSQL database with Sentry data

  • use_sentry

    General purpose Sentry interaction tool

  • get_organization

    Get details of a Sentry organization

  • get_team

    Get details of a Sentry team

  • search_traces

    Search Sentry traces using natural language

Note: Inferred tool names from the documentation that mentions AI-powered search tools (search_events, search_issues) and other capabilities (create_issue, get_issue, etc.). Some tool names are mentioned in the context of functionality rather tha

Comparable tools

sentrybugsnag-mcprollbar-mcp

Installation

Installation

Claude Code Plugin

claude plugin marketplace add getsentry/sentry-mcp
claude plugin install sentry-mcp@sentry-mcp

MCP Configuration

{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["@sentry/mcp-server"],
      "env": {
        "SENTRY_ACCESS_TOKEN": "your-token",
        "EMBEDDED_AGENT_PROVIDER": "openai",
        "OPENAI_API_KEY": "sk-..."
      }
    }
  }
}

FAQ

What LLM providers are supported?
OpenAI and Anthropic are supported for AI-powered search tools. You need to configure API keys for the provider you choose.
Can I use this with self-hosted Sentry?
Yes, use the stdio transport with the --host flag and provide your Sentry host URL. You may need to add --insecure-http for non-TLS deployments.

Compare sentry-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.