# Sentry (verified)

Manage and investigate Sentry issues, events, traces, releases, and organizations from one place. Search for errors, run counts and performance queries, fetch attachments and DSNs, and navigate proje…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add sentry

# Browse available tools
npx -y @smithery/cli@latest tool list sentry

# Get full schema for a tool
npx -y @smithery/cli@latest tool get sentry whoami

# Call a tool
npx -y @smithery/cli@latest tool call sentry whoami '{}'
```

## Direct MCP Connection

Endpoint: `https://sentry.run.tools`

## Tools (19)

- `whoami` — Identify the authenticated user in Sentry.
- `find_organizations` — Find organizations that the user has access to in Sentry.
- `find_teams` — Find teams in an organization in Sentry.
- `find_projects` — Find projects in Sentry.
- `find_releases` — Find releases in Sentry.
- `get_issue_details` — Get detailed information about a specific Sentry issue by ID.
- `get_trace_details` — Get detailed information about a specific Sentry trace by ID.
- `get_event_attachment` — Download attachments from a Sentry event.
- `update_issue` — Update an issue's status or assignment in Sentry. This allows you to resolve, ignore, or reassign issues.
- `search_events` — Search for events AND perform counts/aggregations - the ONLY tool for statistics and counts.
- `create_team` — Create a new team in Sentry.
- `create_project` — Create a new project in Sentry (includes DSN automatically).
- `update_project` — Update project settings in Sentry, such as name, slug, platform, and team assignment.
- `create_dsn` — Create an additional DSN for an EXISTING project.
- `find_dsns` — List all Sentry DSNs for a specific project.
- `analyze_issue_with_seer` — Use Seer to analyze production errors and get detailed root cause analysis with specific code fixes.
- `search_docs` — Search Sentry documentation for SDK setup, instrumentation, and configuration guidance.
- `get_doc` — Fetch the full markdown content of a Sentry documentation page.
- `search_issues` — Search for grouped issues/problems in Sentry - returns a LIST of issues, NOT counts or aggregations.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get sentry <tool-name>
```
