TOOL API

get_event_attachment

Download attachments from a Sentry event. Use this tool when you need to: - Download files attached to a specific event - Access screenshots, log files, or other attachments uploaded with an error report - Retrieve attachment metadata and download URLs <examples> ### Download a specific attachment by ID ``` get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243', attachmentId='12345') ``` ### List all attachments for an event ``` get_event_attachment(organizationSlug='my-organization', projectSlug='my-project', eventId='c49541c747cb4d8aa3efb70ca5aba243') ``` </examples> <hints> - If `attachmentId` is provided, the specific attachment will be downloaded as an embedded resource - If `attachmentId` is omitted, all attachments for the event will be listed with download information - The `projectSlug` is required to identify which project the event belongs to </hints>

devOAuth1 credits

Call information

Tool slug
sentry-mcp.get_event_attachment
Provider
Sentry
Average response
0 ms
Calls in 7 days
0

Input parameters

organizationSlugrequired

The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.

projectSlugrequired

The project's slug. You can find a list of existing projects in an organization using the `find_projects()` tool.

eventIdrequired

The ID of the event.

attachmentId

The ID of the attachment to download.

regionUrl

The region URL for the organization you're querying, if known. For Sentry's Cloud Service (sentry.io), this is typically the region-specific URL like 'https://us.sentry.io'. For self-hosted Sentry installations, this parameter is usually not needed and should be omitted. You can find the correct regionUrl from the organization details using the `find_organizations()` tool.