- Home
- MCP servers
- Sentry
Sentry
- typescript
8
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"getsentry-sentry-mcp-stdio": {
"command": "npx",
"args": [
"ts-node",
"/Users/<your-user-directory>/sentry-mcp-ts/index.ts"
],
"env": {
"SENTRY_AUTH": "<YOUR_AUTH_TOKEN>"
}
}
}
}Available tools
list_projects
Lists all accessible Sentry projects for a given organization. Parameters include organization_slug, view (summary or detailed), and format (plain or markdown).
resolve_short_id
Retrieves details about an issue using its short ID. Requires organization_slug and short_id, with an optional format parameter.
get_sentry_event
Retrieves and analyzes a specific Sentry event from an issue using issue_id_or_url and event_id, with options for view and output format.
list_error_events_in_project
Lists error events within a specific project identified by organization_slug and project_slug, with view and format options.
create_project
Creates a new project in Sentry within a given organization and assigns it to a team, returning its client keys. Includes optional platform and view/format parameters.
list_project_issues
Lists issues from a specific project, with parameters for organization_slug, project_slug, view, and format.
list_issue_events
Lists events for a specific issue identified by organization_slug and issue_id, with view and format options.
get_sentry_issue
Retrieves and analyzes a Sentry issue by issue_id or URL, with view and format options.
list_organization_replays
Lists replays for a specific organization, with multiple optional filters like project_ids, environment, stats_period, date range, sorting, query, pagination, and view/format.