API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Slug
Filter by project (optional)
Search Query
e.g., is:unresolved, level:error
List Issues (sentry_issues_list)
List issues from Sentry for a specific organization and optionally a specific project. Returns issue details including status, error counts, and last seen timestamps.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring No Filter issues by specific project slug (optional) querystring No Search query to filter issues. Supports Sentry search syntax (e.g., "is:unresolved", "level:error") statsPeriodstring No Time period for stats (e.g., "24h", "7d", "30d"). Defaults to 24h if not specified. cursorstring No Pagination cursor for retrieving next page of results limitnumber No Number of issues to return per page (default: 25, max: 100) statusstring No Filter by issue status: unresolved, resolved, ignored, or muted sortstring No Sort order: date, new, freq, priority, or user (default: date)
Output
Parameter Type Description idstring Project ID shortIdstring Short issue identifier titlestring Issue title culpritstring Function or location that caused the issue permalinkstring Direct link to the issue in Sentry loggerstring Logger name that reported the issue levelstring Severity level (error, warning, info, etc.) statusstring Current issue status platformstring Platform where the issue occurred namestring Project name slugstring Project slug
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Get Issue (sentry_issues_get)
Retrieve detailed information about a specific Sentry issue by its ID. Returns complete issue details including metadata, tags, and statistics.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization issueIdstring Yes The unique ID of the issue to retrieve
Output
Parameter Type Description idstring Project ID shortIdstring Short issue identifier titlestring Issue title culpritstring Function or location that caused the issue permalinkstring Direct link to the issue in Sentry loggerstring Logger name that reported the issue levelstring Severity level (error, warning, info, etc.) statusstring Current issue status statusDetailsobject Additional details about the status isPublicboolean Whether the issue is publicly visible platformstring Platform where the issue occurred namestring Project name slugstring Project slug
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Assign To
User ID or email (empty to unassign)
Update Issue (sentry_issues_update)
Update a Sentry issue by changing its status, assignment, bookmark state, or other properties. Returns the updated issue details.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization issueIdstring Yes The unique ID of the issue to update statusstring No New status for the issue: resolved, unresolved, ignored, or resolvedInNextRelease assignedTostring No User ID or email to assign the issue to. Use empty string to unassign. isBookmarkedboolean No Whether to bookmark the issue isSubscribedboolean No Whether to subscribe to issue updates isPublicboolean No Whether the issue should be publicly visible
Output
Parameter Type Description idstring User ID shortIdstring Short issue identifier titlestring Issue title statusstring Updated issue status namestring User name
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
List Projects (sentry_projects_list)
List all projects in a Sentry organization. Returns project details including name, platform, teams, and configuration.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization cursorstring No Pagination cursor for retrieving next page of results limitnumber No Number of projects to return per page (default: 25, max: 100)
Output
Parameter Type Description idstring Organization ID slugstring Organization slug namestring Project name platformstring Platform/language (e.g., javascript, python) dateCreatedstring When the project was created (ISO timestamp) isBookmarkedboolean Whether the project is bookmarked isMemberboolean Whether the user is a member of the project featuresarray Enabled features for the project
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project ID or Slug*
Enter project ID or slug
Get Project (sentry_projects_get)
Retrieve detailed information about a specific Sentry project by its slug. Returns complete project details including teams, features, and configuration.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring Yes The ID or slug of the project to retrieve
Output
Parameter Type Description idstring Unique project ID slugstring URL-friendly project identifier namestring Project name platformstring Platform/language (e.g., javascript, python) dateCreatedstring When the project was created (ISO timestamp) isBookmarkedboolean Whether the project is bookmarked isMemberboolean Whether the user is a member of the project
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Name*
Enter project name
Team Slug*
Team that will own the project
Project Slug
Auto-generated if not provided
Platform
javascript, python, node, etc.
Create Default Alert Rules
Create Project (sentry_projects_create)
Create a new Sentry project in an organization. Requires a team to associate the project with. Returns the created project details.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization namestring Yes The name of the project teamSlugstring Yes The slug of the team that will own this project slugstring No URL-friendly project identifier (auto-generated from name if not provided) platformstring No Platform/language for the project (e.g., javascript, python, node, react-native). If not specified, defaults to "other" defaultRulesboolean No Whether to create default alert rules (default: true)
Output
Parameter Type Description idstring Organization ID slugstring Organization slug namestring Project name platformstring Platform/language dateCreatedstring When the project was created (ISO timestamp)
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Slug*
Enter project slug
New Name
Leave empty to keep current name
New Slug
Leave empty to keep current slug
Platform
Leave empty to keep current platform
Update Project (sentry_projects_update)
Update a Sentry project by changing its name, slug, platform, or other settings. Returns the updated project details.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring Yes The slug of the project to update namestring No New name for the project slugstring No New URL-friendly project identifier platformstring No New platform/language for the project (e.g., javascript, python, node) isBookmarkedboolean No Whether to bookmark the project digestsMinDelaynumber No Minimum delay (in seconds) for digest notifications digestsMaxDelaynumber No Maximum delay (in seconds) for digest notifications
Output
Parameter Type Description idstring Organization ID slugstring Organization slug namestring Project name platformstring Platform/language isBookmarkedboolean Whether the project is bookmarked
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Slug*
Enter project slug
Issue ID
Filter by specific issue (optional)
Search Query
e.g., user.email:*@example.com
Stats Period
24h, 7d, 30d, 90d
List Events (sentry_events_list)
List events from a Sentry project. Can be filtered by issue ID, query, or time period. Returns event details including context, tags, and user information.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring Yes The slug of the project to list events from issueIdstring No Filter events by a specific issue ID querystring No Search query to filter events. Supports Sentry search syntax (e.g., "user.email:*@example.com") cursorstring No Pagination cursor for retrieving next page of results limitnumber No Number of events to return per page (default: 50, max: 100) statsPeriodstring No Time period to query (e.g., "24h", "7d", "30d"). Defaults to 90d if not specified.
Output
Parameter Type Description idstring User ID eventIDstring Event identifier projectIDstring Project ID groupIDstring Issue group ID messagestring Event message titlestring Event title culpritstring Function or location that caused the event dateCreatedstring When the event was created (ISO timestamp) dateReceivedstring When Sentry received the event (ISO timestamp) emailstring User email usernamestring Username
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Slug*
Enter project slug
Get Event (sentry_events_get)
Retrieve detailed information about a specific Sentry event by its ID. Returns complete event details including stack traces, breadcrumbs, context, and user information.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring Yes The slug of the project eventIdstring Yes The unique ID of the event to retrieve
Output
Parameter Type Description idstring User ID eventIDstring Event identifier projectIDstring Project ID groupIDstring Issue group ID this event belongs to messagestring Event message titlestring Event title locationstring Location information culpritstring Function or location that caused the event dateCreatedstring When the event was created (ISO timestamp) dateReceivedstring When Sentry received the event (ISO timestamp) emailstring User email usernamestring Username ipAddressstring IP address
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Project Slug
Filter by project (optional)
Search Query
Search for specific release versions
List Releases (sentry_releases_list)
List releases for a Sentry organization or project. Returns release details including version, commits, deploy information, and associated projects.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization projectSlugstring No Filter releases by specific project slug (optional) querystring No Search query to filter releases (e.g., version name pattern) cursorstring No Pagination cursor for retrieving next page of results limitnumber No Number of releases to return per page (default: 25, max: 100)
Output
Parameter Type Description idstring User ID versionstring Release version identifier shortVersionstring Shortened version identifier refstring Git reference (commit SHA, tag, or branch) urlstring URL to the release (e.g., GitHub release page) dateReleasedstring When the release was deployed (ISO timestamp) dateCreatedstring When the release was created (ISO timestamp) newGroupsnumber Number of new issues introduced in this release namestring User name
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Version*
e.g., 2.0.0 or my-app@1.0.0
Projects*
Comma-separated project slugs
Git Reference
Commit SHA, tag, or branch
Release URL
URL to release page (e.g., GitHub release)
Release Date
ISO 8601 timestamp (defaults to now)
Commits (JSON)
[{"id":"abc123","message":"Fix bug"}]
Create Release (sentry_releases_create)
Create a new release in Sentry. A release is a version of your code deployed to an environment. Can include commit information and associated projects. Returns the created release details.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization versionstring Yes Version identifier for the release (e.g., "2.0.0", "my-app@1.0.0", or a git commit SHA) projectsstring Yes Comma-separated list of project slugs to associate with this release refstring No Git reference (commit SHA, tag, or branch) for this release urlstring No URL pointing to the release (e.g., GitHub release page) dateReleasedstring No ISO 8601 timestamp for when the release was deployed (defaults to current time) commitsstring No JSON array of commit objects with id, repository (optional), and message (optional). Example: [{"id":"abc123","message":"Fix bug"}]
Output
Parameter Type Description idstring Project ID versionstring Release version identifier shortVersionstring Shortened version identifier refstring Git reference (commit SHA, tag, or branch) urlstring URL to the release dateReleasedstring When the release was deployed (ISO timestamp) dateCreatedstring When the release was created (ISO timestamp) commitCountnumber Number of commits in this release namestring Project name
API Key*
••••••••
Organization Slug*
Your Sentry organization slug
Version*
Release version to deploy
Environment*
production, staging, etc.
Deploy Name
Optional deploy name
Deploy URL
URL to CI/CD pipeline or deploy
Start Time
ISO 8601 timestamp (defaults to now)
Finish Time
ISO 8601 timestamp
Create Deploy (sentry_releases_deploy)
Create a deploy record for a Sentry release in a specific environment. Deploys track when and where releases are deployed. Returns the created deploy details.
Input
Parameter Type Required Description apiKeystring Yes Sentry API authentication token organizationSlugstring Yes The slug of the organization versionstring Yes Version identifier of the release being deployed environmentstring Yes Environment name where the release is being deployed (e.g., "production", "staging") namestring No Optional name for this deploy (e.g., "Deploy v2.0 to Production") urlstring No URL pointing to the deploy (e.g., CI/CD pipeline URL) dateStartedstring No ISO 8601 timestamp for when the deploy started (defaults to current time) dateFinishedstring No ISO 8601 timestamp for when the deploy finished
Output
Parameter Type Description idstring Unique deploy ID environmentstring Environment name where the release was deployed namestring Name of the deploy urlstring URL pointing to the deploy dateStartedstring When the deploy started (ISO timestamp)
Integrate Sentry into the workflow. Monitor issues, manage projects, track events, and coordinate releases across your applications.
Category: tools
Type: sentry