{
  "markdown": "# Sentry MCP Server\n\n> Connect AI assistants to [Sentry](https://sentry.io/) — error tracking, issues, releases, events, and project management through the Model Context Protocol.\n\nWorks with **Claude Desktop**, **Cursor**, **Windsurf**, **Cline**, **Continue**, and any MCP-compatible client.\n\n## Features\n\n| Tool | Description |\n|------|-------------|\n| `list_organizations` | List all Sentry organizations you have access to |\n| `list_projects` | List projects in an organization with slug, platform, and team info |\n| `list_issues` | List issues with filters (environment, status, level, query, project) |\n| `get_issue` | Get full details of a specific issue — title, culprit, metadata, tags |\n| `list_issue_events` | List all events (occurrences) for a specific issue |\n| `get_event` | Get full event details — exception, stacktrace, breadcrumbs, tags |\n| `list_releases` | List releases in an organization with version, date, and authors |\n| `get_release` | Get details of a specific release with commit info and file changes |\n| `list_teams` | List teams in an organization with member counts and slugs |\n| `list_members` | List organization members with role and email |\n| `get_issue_hashes` | Get the grouping hashes (fingerprint) for an issue |\n| `update_issue_status` | Resolve, ignore, or unresolve an issue (and add a comment) |\n\n## Quick Start\n\n### 1. Get a Sentry Auth Token\n\nGo to **Sentry → Settings → Auth Tokens** and create a token with the scopes you need (`org:read`, `project:read`, `event:read`, `event:write`, `issue:read`, `issue:write`).\n\nOr visit: `https://sentry.io/settings/auth-tokens/`\n\n### 2. Configure your MCP client\n\n**Claude Desktop** — add to `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"sentry\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"sentry-mcp-server\"],\n      \"env\": {\n        \"SENTRY_AUTH_TOKEN\": \"sntrys_YOUR_TOKEN_HERE\"\n      }\n    }\n  }\n}\n```\n\n**Cursor** — add to MCP settings (`.cursor/mcp.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"sentry\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"sentry-mcp-server\"],\n      \"env\": {\n        \"SENTRY_AUTH_TOKEN\": \"sntrys_YOUR_TOKEN_HERE\"\n      }\n    }\n  }\n}\n```\n\n### 3. Run manually (for testing)\n\n```bash\ngit clone https://github.com/friendlygeorge/sentry-mcp-server.git\ncd sentry-mcp-server\nnpm install\nnpm run build\n\n# Run\nSENTRY_AUTH_TOKEN=sntrys_xxx node dist/index.js\n```\n\n## Environment Variables\n\n| Variable | Required | Default | Description |\n|----------|----------|---------|-------------|\n| `SENTRY_AUTH_TOKEN` | ✅ | — | Your Sentry auth token (`sntrys_...`) |\n| `SENTRY_BASE_URL` | ❌ | `https://sentry.io/api/0/` | Sentry API base URL. Override for self-hosted Sentry. |\n\n### Self-hosted Sentry\n\nIf you run your own Sentry instance, set `SENTRY_BASE_URL`:\n\n```\nSENTRY_BASE_URL=https://sentry.yourcompany.com/api/0/\n```\n\n## Example Queries\n\n> \"List my Sentry organizations\"\n\n> \"Show me unresolved errors in the production environment for org `acme` project `web`\"\n\n> \"Get details of issue `1234567890` and show me the latest event's stack trace\"\n\n> \"Resolve issue `1234567890` and add a comment that it's fixed in v1.2.3\"\n\n> \"List the last 10 releases for `acme`\"\n\n> \"Who are the members of `acme` org and their roles?\"\n\n## API Coverage\n\nThis server covers the most-used endpoints of the Sentry Web API:\n\n- Organizations (`/organizations/`)\n- Projects (`/organizations/{org}/projects/`)\n- Issues (`/organizations/{org}/issues/`, `/issues/{id}/`)\n- Events (`/issues/{id}/events/`, `/projects/{org}/{project}/events/{id}/`)\n- Releases (`/organizations/{org}/releases/`)\n- Teams (`/organizations/{org}/teams/`)\n- Members (`/organizations/{org}/members/`)\n\nFor the full Sentry API, see [docs.sentry.io/api](https://docs.sentry.io/api/).\n\n## License\n\nMIT © 2026 Nova\n",
  "bytes": 3789,
  "sha": "f7f86692deec2b2d2ad7664233d7dfe9f6c3ede42234d54d8b1c24c8bf31f3ca",
  "repo_slug": "friendlygeorge/sentry-mcp-server",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_friendlygeorge_sentry_mcp_serv_fc9150e1/readme"
}