TOOL API

get_sentry_resource

Fetch a Sentry resource by URL or by type and ID. <examples> ### From a Sentry URL get_sentry_resource(url='https://sentry.io/issues/PROJECT-123/') ### Breadcrumbs from a Sentry URL get_sentry_resource(url='https://sentry.io/issues/PROJECT-123/', resourceType='breadcrumbs') ### By type and ID get_sentry_resource(resourceType='issue', organizationSlug='my-org', resourceId='PROJECT-123') </examples>

devOAuth1 credits

Call information

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

Input parameters

url

Sentry URL. The resource type is auto-detected from the URL pattern.

resourceType

Resource type. With a URL, overrides the auto-detected type (e.g., 'breadcrumbs' on an issue URL).

resourceId

Resource identifier: issue shortId (e.g., 'PROJECT-123'), event ID, or trace ID. Required when not using a URL.

organizationSlug

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