AACFlow

Sentry

Manage Sentry issues, projects, events, and releases

Usage Instructions

Integrate Sentry into the workflow. Monitor issues, manage projects, track events, and coordinate releases across your applications.

Tools

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringNoFilter issues by specific project slug (e.g., "my-project")
querystringNoSearch query to filter issues. Supports Sentry search syntax (e.g., "is:unresolved", "level:error")
statsPeriodstringNoTime period for stats (e.g., "24h", "7d", "30d"). Defaults to 24h if not specified.
cursorstringNoNo description
limitnumberNoNo description
statusstringNoNo description
sortstringNoNo description

Output

ParameterTypeDescription
issuesarrayList of Sentry issues
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
culpritstringFunction or location that caused the issue
permalinkstringDirect link to the issue in Sentry
loggerstringLogger name that reported the issue
levelstringSeverity level (error, warning, info, etc.)
statusstringCurrent issue status
statusDetailsobjectAdditional details about the status
isPublicbooleanWhether the issue is publicly visible
platformstringPlatform where the issue occurred
projectobjectProject information
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
typestringIssue type
metadataobjectError metadata
typestringType of error (e.g., TypeError)
valuestringError message or value
functionstringFunction where the error occurred
numCommentsnumberNumber of comments on the issue
assignedToobjectUser assigned to the issue
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanWhether the issue is bookmarked
isSubscribedbooleanWhether subscribed to updates
hasSeenbooleanWhether the user has seen this issue
annotationsarrayIssue annotations
isUnhandledbooleanWhether the issue is unhandled
countstringTotal number of occurrences
userCountnumberNumber of unique users affected
firstSeenstringWhen the issue was first seen (ISO timestamp)
lastSeenstringWhen the issue was last seen (ISO timestamp)
statsobjectStatistical information about the issue
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanWhether there are more results available

sentry_issues_get

Retrieve detailed information about a specific Sentry issue by its ID. Returns complete issue details including metadata, tags, and statistics.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
issueIdstringYesThe unique ID of the issue to retrieve (e.g., "12345")

Output

ParameterTypeDescription
issueobjectDetailed information about the Sentry issue
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
culpritstringFunction or location that caused the issue
permalinkstringDirect link to the issue in Sentry
loggerstringLogger name that reported the issue
levelstringSeverity level (error, warning, info, etc.)
statusstringCurrent issue status
statusDetailsobjectAdditional details about the status
isPublicbooleanWhether the issue is publicly visible
platformstringPlatform where the issue occurred
projectobjectProject information
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
typestringIssue type
metadataobjectError metadata
typestringType of error (e.g., TypeError, ValueError)
valuestringError message or value
functionstringFunction where the error occurred
numCommentsnumberNumber of comments on the issue
assignedToobjectUser assigned to the issue (if any)
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanWhether the issue is bookmarked
isSubscribedbooleanWhether the user is subscribed to updates
hasSeenbooleanWhether the user has seen this issue
annotationsarrayIssue annotations
isUnhandledbooleanWhether the issue is unhandled
countstringTotal number of occurrences
userCountnumberNumber of unique users affected
firstSeenstringWhen the issue was first seen (ISO timestamp)
lastSeenstringWhen the issue was last seen (ISO timestamp)
statsobjectStatistical information about the issue

sentry_issues_update

Update a Sentry issue by changing its status, assignment, bookmark state, or other properties. Returns the updated issue details.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
issueIdstringYesThe unique ID of the issue to update (e.g., "12345")
statusstringNoNew status for the issue: resolved, unresolved, ignored, or resolvedInNextRelease
assignedTostringNoNo description
isBookmarkedbooleanNoNo description
isSubscribedbooleanNoNo description
isPublicbooleanNoNo description

Output

ParameterTypeDescription
issueobjectThe updated Sentry issue
idstringUnique issue ID
shortIdstringShort issue identifier
titlestringIssue title
statusstringUpdated issue status
assignedToobjectUser assigned to the issue (if any)
idstringUser ID
namestringUser name
emailstringUser email
isBookmarkedbooleanWhether the issue is bookmarked
isSubscribedbooleanWhether the user is subscribed to updates
isPublicbooleanWhether the issue is publicly visible
permalinkstringDirect link to the issue in Sentry

sentry_projects_list

List all projects in a Sentry organization. Returns project details including name, platform, teams, and configuration.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
cursorstringNoNo description
limitnumberNoNo description

Output

ParameterTypeDescription
projectsarrayList of Sentry projects
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language (e.g., javascript, python)
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanWhether the project is bookmarked
isMemberbooleanWhether the user is a member of the project
featuresarrayEnabled features for the project
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamsarrayTeams associated with the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
isPublicbooleanWhether the project is publicly visible
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanWhether there are more results available

sentry_projects_get

Retrieve detailed information about a specific Sentry project by its slug. Returns complete project details including teams, features, and configuration.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringYesThe slug of the project to retrieve (e.g., "my-project")

Output

ParameterTypeDescription
projectobjectDetailed information about the Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language (e.g., javascript, python)
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanWhether the project is bookmarked
isMemberbooleanWhether the user is a member of the project
featuresarrayEnabled features for the project
firstEventstringWhen the first event was received (ISO timestamp)
firstTransactionEventstringWhen the first transaction event was received
accessarrayAccess permissions
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamobjectPrimary team for the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
teamsarrayTeams associated with the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
colorstringProject color code
isPublicbooleanWhether the project is publicly visible
isInternalbooleanWhether the project is internal
hasAccessbooleanWhether the user has access to this project
hasMinifiedStackTracebooleanWhether minified stack traces are available
hasMonitorsbooleanWhether the project has monitors configured
hasProfilesbooleanWhether the project has profiling enabled
hasReplaysbooleanWhether the project has session replays enabled
hasSessionsbooleanWhether the project has sessions enabled

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
namestringYesNo description
teamSlugstringYesNo description
slugstringNoNo description
platformstringNoPlatform/language for the project (e.g., javascript, python, node, react-native). If not specified, defaults to "other"
defaultRulesbooleanNoNo description

Output

ParameterTypeDescription
projectobjectThe newly created Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language
dateCreatedstringWhen the project was created (ISO timestamp)
isBookmarkedbooleanWhether the project is bookmarked
isMemberbooleanWhether the user is a member
hasAccessbooleanWhether the user has access
featuresarrayEnabled features
firstEventstringFirst event timestamp
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamobjectPrimary team for the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
teamsarrayTeams associated with the project
idstringTeam ID
namestringTeam name
slugstringTeam slug
statusstringProject status
colorstringProject color code
isPublicbooleanWhether the project is public

sentry_projects_update

Update a Sentry project by changing its name, slug, platform, or other settings. Returns the updated project details.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringYesThe slug of the project to update (e.g., "my-project")
namestringNoNo description
slugstringNoNo description
platformstringNoNo description
isBookmarkedbooleanNoNo description
digestsMinDelaynumberNoNo description
digestsMaxDelaynumberNoNo description

Output

ParameterTypeDescription
projectobjectThe updated Sentry project
idstringUnique project ID
slugstringURL-friendly project identifier
namestringProject name
platformstringPlatform/language
isBookmarkedbooleanWhether the project is bookmarked
organizationobjectOrganization information
idstringOrganization ID
slugstringOrganization slug
namestringOrganization name
teamsarrayTeams associated with the project
idstringTeam ID
namestringTeam name
slugstringTeam slug

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringYesThe slug of the project to list events from (e.g., "my-project")
issueIdstringNoFilter events by a specific issue ID (e.g., "12345")
querystringNoSearch query to filter events. Supports Sentry search syntax (e.g., "user.email:*@example.com")
cursorstringNoNo description
limitnumberNoNo description
statsPeriodstringNoTime period to query (e.g., "24h", "7d", "30d"). Defaults to 90d if not specified.

Output

ParameterTypeDescription
eventsarrayList of Sentry events
idstringUnique event ID
eventIDstringEvent identifier
projectIDstringProject ID
groupIDstringIssue group ID
messagestringEvent message
titlestringEvent title
locationstringLocation information
culpritstringFunction or location that caused the event
dateCreatedstringWhen the event was created (ISO timestamp)
dateReceivedstringWhen Sentry received the event (ISO timestamp)
userobjectUser information associated with the event
idstringUser ID
emailstringUser email
usernamestringUsername
ipAddressstringIP address
namestringUser display name
tagsarrayTags associated with the event
keystringTag key
valuestringTag value
contextsobjectAdditional context data (device, OS, etc.)
platformstringPlatform where the event occurred
typestringEvent type
metadataobjectError metadata
typestringType of error (e.g., TypeError)
valuestringError message or value
functionstringFunction where the error occurred
entriesarrayEvent entries (exception, breadcrumbs, etc.)
errorsarrayProcessing errors
diststringDistribution identifier
fingerprintsarrayFingerprints for grouping
sdkobjectSDK information
namestringSDK name
versionstringSDK version
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanWhether there are more results available

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringYesThe slug of the project (e.g., "my-project")
eventIdstringYesThe unique ID of the event to retrieve (e.g., "abc123def456")

Output

ParameterTypeDescription
eventobjectDetailed information about the Sentry event
idstringUnique event ID
eventIDstringEvent identifier
projectIDstringProject ID
groupIDstringIssue group ID this event belongs to
messagestringEvent message
titlestringEvent title
locationstringLocation information
culpritstringFunction or location that caused the event
dateCreatedstringWhen the event was created (ISO timestamp)
dateReceivedstringWhen Sentry received the event (ISO timestamp)
userobjectUser information associated with the event
idstringUser ID
emailstringUser email
usernamestringUsername
ipAddressstringIP address
namestringUser display name
tagsarrayTags associated with the event
keystringTag key
valuestringTag value
contextsobjectAdditional context data (device, OS, browser, etc.)
platformstringPlatform where the event occurred
typestringEvent type (error, transaction, etc.)
metadataobjectError metadata
typestringType of error (e.g., TypeError, ValueError)
valuestringError message or value
functionstringFunction where the error occurred
entriesarrayEvent entries including exception, breadcrumbs, and request data
errorsarrayProcessing errors that occurred
diststringDistribution identifier
fingerprintsarrayFingerprints used for grouping events
sdkobjectSDK information
namestringSDK name
versionstringSDK version

sentry_releases_list

List releases for a Sentry organization or project. Returns release details including version, commits, deploy information, and associated projects.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
projectSlugstringNoFilter releases by specific project slug (e.g., "my-project")
querystringNoSearch query to filter releases (e.g., "1.0" to match version patterns)
cursorstringNoNo description
limitnumberNoNo description

Output

ParameterTypeDescription
releasesarrayList of Sentry releases
idstringUnique release ID
versionstringRelease version identifier
shortVersionstringShortened version identifier
refstringGit reference (commit SHA, tag, or branch)
urlstringURL to the release (e.g., GitHub release page)
dateReleasedstringWhen the release was deployed (ISO timestamp)
dateCreatedstringWhen the release was created (ISO timestamp)
dateStartedstringWhen the release started (ISO timestamp)
newGroupsnumberNumber of new issues introduced in this release
ownerobjectOwner of the release
idstringUser ID
namestringUser name
emailstringUser email
commitCountnumberNumber of commits in this release
deployCountnumberNumber of deploys for this release
lastCommitobjectLast commit in the release
idstringCommit SHA
messagestringCommit message
dateCreatedstringCommit timestamp
lastDeployobjectLast deploy of the release
idstringDeploy ID
environmentstringDeploy environment
dateStartedstringDeploy start timestamp
dateFinishedstringDeploy finish timestamp
authorsarrayAuthors of commits in the release
idstringAuthor ID
namestringAuthor name
emailstringAuthor email
projectsarrayProjects associated with this release
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
firstEventstringFirst event timestamp
lastEventstringLast event timestamp
versionInfoobjectVersion metadata
buildHashstringBuild hash
versionobjectVersion details
rawstringRaw version string
packagestringPackage name
metadataobjectPagination metadata
nextCursorstringCursor for the next page of results (if available)
hasMorebooleanWhether there are more results available

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
versionstringYesVersion identifier for the release (e.g., "2.0.0", "my-app@1.0.0", or a git commit SHA)
projectsstringYesNo description
refstringNoNo description
urlstringNoNo description
dateReleasedstringNoISO 8601 timestamp for when the release was deployed (defaults to current time)
commitsstringNoJSON array of commit objects with id, repository (optional), and message (optional). Example: [{"id":"abc123","message":"Fix bug"}]

Output

ParameterTypeDescription
releaseobjectThe newly created Sentry release
idstringUnique release ID
versionstringRelease version identifier
shortVersionstringShortened version identifier
refstringGit reference (commit SHA, tag, or branch)
urlstringURL to the release
dateReleasedstringWhen the release was deployed (ISO timestamp)
dateCreatedstringWhen the release was created (ISO timestamp)
dateStartedstringWhen the release started (ISO timestamp)
newGroupsnumberNumber of new issues introduced
commitCountnumberNumber of commits in this release
deployCountnumberNumber of deploys for this release
ownerobjectRelease owner
idstringOwner ID
namestringOwner name
emailstringOwner email
lastCommitobjectLast commit in the release
idstringCommit SHA
messagestringCommit message
dateCreatedstringCommit timestamp
lastDeployobjectLast deploy of the release
idstringDeploy ID
environmentstringDeploy environment
dateStartedstringDeploy start timestamp
dateFinishedstringDeploy finish timestamp
authorsarrayAuthors of commits in the release
idstringAuthor ID
namestringAuthor name
emailstringAuthor email
projectsarrayProjects associated with this release
idstringProject ID
namestringProject name
slugstringProject slug
platformstringProject platform
firstEventstringFirst event timestamp
lastEventstringLast event timestamp
versionInfoobjectVersion metadata
buildHashstringBuild hash
versionobjectVersion details
rawstringRaw version string
packagestringPackage name

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

ParameterTypeRequiredDescription
apiKeystringYesNo description
organizationSlugstringYesThe slug of the organization (e.g., "my-org")
versionstringYesVersion identifier of the release being deployed (e.g., "1.0.0" or "abc123")
environmentstringYesEnvironment name where the release is being deployed (e.g., "production", "staging")
namestringNoOptional name for this deploy (e.g., "Deploy v2.0 to Production")
urlstringNoNo description
dateStartedstringNoNo description
dateFinishedstringNoNo description

Output

ParameterTypeDescription
deployobjectThe newly created deploy record
idstringUnique deploy ID
environmentstringEnvironment name where the release was deployed
namestringName of the deploy
urlstringURL pointing to the deploy
dateStartedstringWhen the deploy started (ISO timestamp)
dateFinishedstringWhen the deploy finished (ISO timestamp)

On this page

Start building today
Trusted by over 100,000 builders.
The SaaS platform to build AI agents and run your agentic workforce.
Get started